summary refs log tree commit diff
diff options
context:
space:
mode:
authorArtem Bityutskiy <artem.bityutskiy@linux.intel.com>2013-03-12 10:37:29 +0200
committerDavid Woodhouse <David.Woodhouse@intel.com>2013-04-05 13:04:10 +0100
commit255e9fd4b10005fe95d4c1862d6428f7a857deb9 (patch)
treef00481cddb27d7856be95eaf67bffc89bf54f9d9
parentf1faa69d8b6a3d311c21165020f10fce55a0566b (diff)
downloadlinux-255e9fd4b10005fe95d4c1862d6428f7a857deb9.tar.gz
ssb: driver_mipscore: add a const qualifier
Be a bit stricter and add few more 'const' qualifiers.

Signed-off-by: Artem Bityutskiy <artem.bityutskiy@linux.intel.com>
Cc: Michael Buesch <m@bues.ch>
Signed-off-by: David Woodhouse <David.Woodhouse@intel.com>
-rw-r--r--drivers/ssb/driver_mipscore.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/ssb/driver_mipscore.c b/drivers/ssb/driver_mipscore.c
index 33b37dac40bd..8b64f82e1c6a 100644
--- a/drivers/ssb/driver_mipscore.c
+++ b/drivers/ssb/driver_mipscore.c
@@ -18,7 +18,7 @@
 
 #include "ssb_private.h"
 
-static const char *part_probes[] = { "bcm47xxpart", NULL };
+static const char * const part_probes[] = { "bcm47xxpart", NULL };
 
 static struct physmap_flash_data ssb_pflash_data = {
 	.part_probe_types	= part_probes,