diff options
author | Artem Bityutskiy <artem.bityutskiy@linux.intel.com> | 2013-03-12 04:28:31 -0400 |
---|---|---|
committer | David Woodhouse <David.Woodhouse@intel.com> | 2013-04-05 08:02:33 -0400 |
commit | d50dcb1d0e1f8ebe11db1719aad5753cd1b4c4f8 (patch) | |
tree | 421de43a6b29048ac06fa78eb426cdf242ff9f33 | |
parent | 26a4734623e4f06752014336b05cf3ae77158892 (diff) |
mtd: plat-ram: add const quilifiers
Be a bit stricter and add few more 'const' qualifiers.
Signed-off-by: Artem Bityutskiy <artem.bityutskiy@linux.intel.com>
Signed-off-by: David Woodhouse <David.Woodhouse@intel.com>
-rw-r--r-- | drivers/mtd/maps/plat-ram.c | 2 | ||||
-rw-r--r-- | include/linux/mtd/plat-ram.h | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/drivers/mtd/maps/plat-ram.c b/drivers/mtd/maps/plat-ram.c index 2de66b062f0d..71fdda29594b 100644 --- a/drivers/mtd/maps/plat-ram.c +++ b/drivers/mtd/maps/plat-ram.c | |||
@@ -199,7 +199,7 @@ static int platram_probe(struct platform_device *pdev) | |||
199 | * supplied by the platform_data struct */ | 199 | * supplied by the platform_data struct */ |
200 | 200 | ||
201 | if (pdata->map_probes) { | 201 | if (pdata->map_probes) { |
202 | const char **map_probes = pdata->map_probes; | 202 | const char * const *map_probes = pdata->map_probes; |
203 | 203 | ||
204 | for ( ; !info->mtd && *map_probes; map_probes++) | 204 | for ( ; !info->mtd && *map_probes; map_probes++) |
205 | info->mtd = do_map_probe(*map_probes , &info->map); | 205 | info->mtd = do_map_probe(*map_probes , &info->map); |
diff --git a/include/linux/mtd/plat-ram.h b/include/linux/mtd/plat-ram.h index e07890aff1cf..44212d65aa97 100644 --- a/include/linux/mtd/plat-ram.h +++ b/include/linux/mtd/plat-ram.h | |||
@@ -20,8 +20,8 @@ | |||
20 | 20 | ||
21 | struct platdata_mtd_ram { | 21 | struct platdata_mtd_ram { |
22 | const char *mapname; | 22 | const char *mapname; |
23 | const char **map_probes; | 23 | const char * const *map_probes; |
24 | const char **probes; | 24 | const char * const *probes; |
25 | struct mtd_partition *partitions; | 25 | struct mtd_partition *partitions; |
26 | int nr_partitions; | 26 | int nr_partitions; |
27 | int bankwidth; | 27 | int bankwidth; |