]> bbs.cooldavid.org Git - net-next-2.6.git/commitdiff
staging: Use static const char * const where possible
authorJoe Perches <joe@perches.com>
Tue, 14 Sep 2010 04:23:57 +0000 (21:23 -0700)
committerGreg Kroah-Hartman <gregkh@suse.de>
Thu, 16 Sep 2010 20:02:37 +0000 (13:02 -0700)
Signed-off-by: Joe Perches <joe@perches.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
drivers/staging/ath6kl/os/linux/ar6000_drv.c
drivers/staging/bcm/Debug.c

index 03ece0f8c6d457e9ac281365c1817ee61b23250c..c2947bc051ddd2ae106fa43d17e4d7b5a2e49773 100644 (file)
@@ -5075,13 +5075,13 @@ ar6000_hbChallengeResp_event(AR_SOFTC_T *ar, A_UINT32 cookie, A_UINT32 source)
 void
 ar6000_reportError_event(AR_SOFTC_T *ar, WMI_TARGET_ERROR_VAL errorVal)
 {
-    char    *errString[] = {
-                [WMI_TARGET_PM_ERR_FAIL]    "WMI_TARGET_PM_ERR_FAIL",
-                [WMI_TARGET_KEY_NOT_FOUND]  "WMI_TARGET_KEY_NOT_FOUND",
-                [WMI_TARGET_DECRYPTION_ERR] "WMI_TARGET_DECRYPTION_ERR",
-                [WMI_TARGET_BMISS]          "WMI_TARGET_BMISS",
-                [WMI_PSDISABLE_NODE_JOIN]   "WMI_PSDISABLE_NODE_JOIN"
-                };
+       static const char * const errString[] = {
+               [WMI_TARGET_PM_ERR_FAIL]    "WMI_TARGET_PM_ERR_FAIL",
+               [WMI_TARGET_KEY_NOT_FOUND]  "WMI_TARGET_KEY_NOT_FOUND",
+               [WMI_TARGET_DECRYPTION_ERR] "WMI_TARGET_DECRYPTION_ERR",
+               [WMI_TARGET_BMISS]          "WMI_TARGET_BMISS",
+               [WMI_PSDISABLE_NODE_JOIN]   "WMI_PSDISABLE_NODE_JOIN"
+       };
 
     A_PRINTF("AR6000 Error on Target. Error = 0x%x\n", errorVal);
 
index 213f4bcc5dfc70d3214f9149c8a031ef35f975fa..d01eb120500acfbdbac93d1066e21ba99cc7b7c0 100644 (file)
@@ -1,12 +1,13 @@
 #include "headers.h"
 
-char *buff_dump_base[]={"DEC", "HEX",  "OCT", "BIN"    };
-
 static UINT current_debug_level=BCM_SCREAM;
 
 int bcm_print_buffer( UINT debug_level, const char *function_name,
                                  char *file_name, int line_number, unsigned char *buffer, int bufferlen, unsigned int base)
 {
+       static const char * const buff_dump_base[] = {
+               "DEC", "HEX", "OCT", "BIN"
+       };
        if(debug_level>=current_debug_level)
        {
                int i=0;