Skip to content

Commit

Permalink
mtd: nand: atmel_nand: constify atmel_nand_caps structures
Browse files Browse the repository at this point in the history
All atmel_nand_caps are never modified, consitify them.

Signed-off-by: LABBE Corentin <[email protected]>
Acked-by: Josh Wu <[email protected]>
Signed-off-by: Brian Norris <[email protected]>
  • Loading branch information
montjoie authored and computersforpeace committed Nov 20, 2015
1 parent b8f70ba commit 72eaec2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions drivers/mtd/nand/atmel_nand.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down Expand Up @@ -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,
};

Expand Down

0 comments on commit 72eaec2

Please sign in to comment.