]> git.karo-electronics.de Git - karo-tx-linux.git/commit
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)
committerArtem Bityutskiy <artem.bityutskiy@linux.intel.com>
Tue, 19 Mar 2013 08:22:32 +0000 (10:22 +0200)
commit80d76504f874f6bd0890e0ba1621b090cbe3bfdc
tree6cacae7ffa5aa69c547a1e25aad9bdc6978b01f6
parent881e158f8cdcc0453c444be8569c055bcc52bd38
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>
drivers/mtd/mtdcore.c
drivers/mtd/mtdcore.h
drivers/mtd/mtdpart.c
include/linux/mtd/mtd.h