mtd: add 'const' qualifier to a couple of register functions
authorArtem Bityutskiy <artem.bityutskiy@linux.intel.com>
Mon, 11 Mar 2013 13:38:48 +0000 (15:38 +0200)
committerDavid Woodhouse <David.Woodhouse@intel.com>
Fri, 5 Apr 2013 12:02:16 +0000 (13:02 +0100)
commit26a4734623e4f06752014336b05cf3ae77158892
tree8bb3860ea6412de8ee02781eba2f43eb42258864
parentb08a25ade20542d43881c94c6fd4e03f90c1f096
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>
drivers/mtd/mtdcore.c
drivers/mtd/mtdcore.h
drivers/mtd/mtdpart.c
include/linux/mtd/mtd.h