mtd: nand: atmel_nand: constify atmel_nand_caps structures
authorLABBE Corentin <clabbe.montjoie@gmail.com>
Fri, 20 Nov 2015 07:45:16 +0000 (08:45 +0100)
committerBrian Norris <computersforpeace@gmail.com>
Fri, 20 Nov 2015 17:54:36 +0000 (09:54 -0800)
All atmel_nand_caps are never modified, consitify them.

Signed-off-by: LABBE Corentin <clabbe.montjoie@gmail.com>
Acked-by: Josh Wu <josh.wu@atmel.com>
Signed-off-by: Brian Norris <computersforpeace@gmail.com>
drivers/mtd/nand/atmel_nand.c

index 6ecc1c1ab4375511dd46582b6c8ed96e58d7b5e6..f4e1f915c696351c76d261ccf2e99f2d3c9f707d 100644 (file)
@@ -128,7 +128,7 @@ struct atmel_nand_host {
 
        struct atmel_nfc        *nfc;
 
-       struct atmel_nand_caps  *caps;
+       const struct atmel_nand_caps    *caps;
        bool                    has_pmecc;
        u8                      pmecc_corr_cap;
        u16                     pmecc_sector_size;
@@ -2303,11 +2303,11 @@ static int atmel_nand_remove(struct platform_device *pdev)
        return 0;
 }
 
-static struct atmel_nand_caps at91rm9200_caps = {
+static const struct atmel_nand_caps at91rm9200_caps = {
        .pmecc_correct_erase_page = false,
 };
 
-static struct atmel_nand_caps sama5d4_caps = {
+static const struct atmel_nand_caps sama5d4_caps = {
        .pmecc_correct_erase_page = true,
 };
 
This page took 0.02566 seconds and 5 git commands to generate.