diff options
author | Arvind Yadav <arvind.yadav.cs@gmail.com> | 2017-08-28 11:24:57 +0300 |
---|---|---|
committer | Richard Weinberger <richard@nod.at> | 2017-11-07 01:26:01 +0300 |
commit | d4906688d49150eb77ddc9baafc3ea14bc158f03 (patch) | |
tree | 280508adb925be23bb42a939d0788add394c7ea8 /drivers/mtd/maps/uclinux.c | |
parent | 2e442aebed99fd27eaa4e3539d9c50ef1cc67013 (diff) | |
download | linux-d4906688d49150eb77ddc9baafc3ea14bc158f03.tar.xz |
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.c | 2 |
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" } }; |