aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/mtd/maps/uclinux.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/uclinux.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/uclinux.c')
-rw-r--r--drivers/mtd/maps/uclinux.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/mtd/maps/uclinux.c b/drivers/mtd/maps/uclinux.c
index 00a8190797ec..aef030ca8601 100644
--- a/drivers/mtd/maps/uclinux.c
+++ b/drivers/mtd/maps/uclinux.c
@@ -49,7 +49,7 @@ static struct mtd_info *uclinux_ram_mtdinfo;
/****************************************************************************/
-static struct mtd_partition uclinux_romfs[] = {
+static const struct mtd_partition uclinux_romfs[] = {
{ .name = "ROMfs" }
};