aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/mtd/maps/cfi_flagadm.c
diff options
context:
space:
mode:
authorArvind Yadav <arvind.yadav.cs@gmail.com>2017-08-28 13:54:57 +0530
committerRichard Weinberger <richard@nod.at>2017-11-06 23:26:01 +0100
commitd4906688d49150eb77ddc9baafc3ea14bc158f03 (patch)
tree280508adb925be23bb42a939d0788add394c7ea8 /drivers/mtd/maps/cfi_flagadm.c
parentmtd: plat-ram: Replace manual resource management by devm (diff)
downloadlinux-dev-d4906688d49150eb77ddc9baafc3ea14bc158f03.tar.xz
linux-dev-d4906688d49150eb77ddc9baafc3ea14bc158f03.zip
mtd: constify mtd_partition
mtd_partition are not supposed to change at runtime. Functions 'mtd_device_parse_register' working with const mtd_partition provided by <linux/mtd/mtd.h>. So mark the non-const structs as const. Signed-off-by: Arvind Yadav <arvind.yadav.cs@gmail.com> Signed-off-by: Richard Weinberger <richard@nod.at>
Diffstat (limited to 'drivers/mtd/maps/cfi_flagadm.c')
-rw-r--r--drivers/mtd/maps/cfi_flagadm.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/mtd/maps/cfi_flagadm.c b/drivers/mtd/maps/cfi_flagadm.c
index d504b3d1791d..70f488628464 100644
--- a/drivers/mtd/maps/cfi_flagadm.c
+++ b/drivers/mtd/maps/cfi_flagadm.c
@@ -61,7 +61,7 @@ static struct map_info flagadm_map = {
.bankwidth = 2,
};
-static struct mtd_partition flagadm_parts[] = {
+static const struct mtd_partition flagadm_parts[] = {
{
.name = "Bootloader",
.offset = FLASH_PARTITION0_ADDR,