summaryrefslogtreecommitdiffstats
path: root/drivers/mtd/mtdcore.c
diff options
context:
space:
mode:
authorArtem Bityutskiy2013-03-11 14:38:48 +0100
committerDavid Woodhouse2013-04-05 14:02:16 +0200
commit26a4734623e4f06752014336b05cf3ae77158892 (patch)
tree8bb3860ea6412de8ee02781eba2f43eb42258864 /drivers/mtd/mtdcore.c
parentmtd: remove the ixp2000 map driver (diff)
downloadkernel-qcow2-linux-26a4734623e4f06752014336b05cf3ae77158892.tar.gz
kernel-qcow2-linux-26a4734623e4f06752014336b05cf3ae77158892.tar.xz
kernel-qcow2-linux-26a4734623e4f06752014336b05cf3ae77158892.zip
mtd: add 'const' qualifier to a couple of register functions
'mtd_device_parse_register()' and 'parse_mtd_partitions()' functions accept a an array of character pointers. These functions modify neither the pointers nor the characters they point to. The characters are actually names of the MTD parsers. At the moment, the argument type is 'const char **', which means that only the names of the parsers are constant. Let's turn the argument type into 'const char * const *', which means that both names and the pointers which point to them are constant. Signed-off-by: Artem Bityutskiy <artem.bityutskiy@linux.intel.com> Signed-off-by: David Woodhouse <David.Woodhouse@intel.com>
Diffstat (limited to 'drivers/mtd/mtdcore.c')
-rw-r--r--drivers/mtd/mtdcore.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/mtd/mtdcore.c b/drivers/mtd/mtdcore.c
index 61d5f56473e1..681bb6de6ff9 100644
--- a/drivers/mtd/mtdcore.c
+++ b/drivers/mtd/mtdcore.c
@@ -492,7 +492,7 @@ out_error:
*
* Returns zero in case of success and a negative error code in case of failure.
*/
-int mtd_device_parse_register(struct mtd_info *mtd, const char **types,
+int mtd_device_parse_register(struct mtd_info *mtd, const char * const *types,
struct mtd_part_parser_data *parser_data,
const struct mtd_partition *parts,
int nr_parts)