diff options
author | Artem Bityutskiy <artem.bityutskiy@linux.intel.com> | 2013-03-12 10:46:37 +0200 |
---|---|---|
committer | David Woodhouse <David.Woodhouse@intel.com> | 2013-04-05 13:04:20 +0100 |
commit | 0984c8910426371205da0b60fc1dae64a996fb64 (patch) | |
tree | 7c42eb8e633d1eb7167da0d73b8a1b01226576d1 /drivers/mtd/maps/tsunami_flash.c | |
parent | cce2a026b5778001002dcab0dadec100d8959846 (diff) | |
download | blackbird-op-linux-0984c8910426371205da0b60fc1dae64a996fb64.tar.gz blackbird-op-linux-0984c8910426371205da0b60fc1dae64a996fb64.zip |
mtd: maps: add const qualifiers
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>
Diffstat (limited to 'drivers/mtd/maps/tsunami_flash.c')
-rw-r--r-- | drivers/mtd/maps/tsunami_flash.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/drivers/mtd/maps/tsunami_flash.c b/drivers/mtd/maps/tsunami_flash.c index 1de390e1c2fb..da2cdb5fd6db 100644 --- a/drivers/mtd/maps/tsunami_flash.c +++ b/drivers/mtd/maps/tsunami_flash.c @@ -82,11 +82,12 @@ static void __exit cleanup_tsunami_flash(void) tsunami_flash_mtd = 0; } +static const char * const rom_probe_types[] = { + "cfi_probe", "jedec_probe", "map_rom", NULL }; static int __init init_tsunami_flash(void) { - static const char *rom_probe_types[] = { "cfi_probe", "jedec_probe", "map_rom", NULL }; - char **type; + const char * const *type; tsunami_tig_writeb(FLASH_ENABLE_BYTE, FLASH_ENABLE_PORT); |