aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/bcma
diff options
context:
space:
mode:
authorArtem Bityutskiy <artem.bityutskiy@linux.intel.com>2013-03-12 04:34:50 -0400
committerDavid Woodhouse <David.Woodhouse@intel.com>2013-04-05 08:04:07 -0400
commitf1faa69d8b6a3d311c21165020f10fce55a0566b (patch)
tree278fc3c0bb2995d9fe3d5cdd7361b4d24bf4c244 /drivers/bcma
parentf39cf6c7d472349a9907955ef213db1f26618ba0 (diff)
bcma_mips: 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: "Rafał Miłecki" <zajec5@gmail.com> Signed-off-by: David Woodhouse <David.Woodhouse@intel.com>
Diffstat (limited to 'drivers/bcma')
-rw-r--r--drivers/bcma/driver_mips.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/bcma/driver_mips.c b/drivers/bcma/driver_mips.c
index 9a7f0e3ab5a3..11115bbe115c 100644
--- a/drivers/bcma/driver_mips.c
+++ b/drivers/bcma/driver_mips.c
@@ -21,7 +21,7 @@
21#include <linux/serial_reg.h> 21#include <linux/serial_reg.h>
22#include <linux/time.h> 22#include <linux/time.h>
23 23
24static const char *part_probes[] = { "bcm47xxpart", NULL }; 24static const char * const part_probes[] = { "bcm47xxpart", NULL };
25 25
26static struct physmap_flash_data bcma_pflash_data = { 26static struct physmap_flash_data bcma_pflash_data = {
27 .part_probe_types = part_probes, 27 .part_probe_types = part_probes,