diff options
author | Joe Perches <joe@perches.com> | 2011-07-09 02:20:25 -0400 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2011-07-13 14:49:35 -0400 |
commit | 2a897d41a30b0af2dbc61c18aa3d2edd9b80fe6a (patch) | |
tree | e773d6370947b5477c316dffcee5511c0ee31d55 | |
parent | 861d9c3f25d216ccbec71a45280eff17fb912434 (diff) |
iwlagn: Add missing comma between constant string array
Multiple quoted strings are concatenated without comma separators.
Make the array const while there.
Signed-off-by: Joe Perches <joe@perches.com>
Acked-by: Wey-Yi Guy <wey-yi.w.guy@intel.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
-rw-r--r-- | drivers/net/wireless/iwlwifi/iwl-agn.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/net/wireless/iwlwifi/iwl-agn.c b/drivers/net/wireless/iwlwifi/iwl-agn.c index 3f2b9d6d257..38a1e4f5882 100644 --- a/drivers/net/wireless/iwlwifi/iwl-agn.c +++ b/drivers/net/wireless/iwlwifi/iwl-agn.c | |||
@@ -1565,7 +1565,7 @@ static void iwl_ucode_callback(const struct firmware *ucode_raw, void *context) | |||
1565 | release_firmware(ucode_raw); | 1565 | release_firmware(ucode_raw); |
1566 | } | 1566 | } |
1567 | 1567 | ||
1568 | static const char *desc_lookup_text[] = { | 1568 | static const char * const desc_lookup_text[] = { |
1569 | "OK", | 1569 | "OK", |
1570 | "FAIL", | 1570 | "FAIL", |
1571 | "BAD_PARAM", | 1571 | "BAD_PARAM", |
@@ -1589,7 +1589,7 @@ static const char *desc_lookup_text[] = { | |||
1589 | "NMI_INTERRUPT_DATA_ACTION_PT", | 1589 | "NMI_INTERRUPT_DATA_ACTION_PT", |
1590 | "NMI_TRM_HW_ER", | 1590 | "NMI_TRM_HW_ER", |
1591 | "NMI_INTERRUPT_TRM", | 1591 | "NMI_INTERRUPT_TRM", |
1592 | "NMI_INTERRUPT_BREAK_POINT" | 1592 | "NMI_INTERRUPT_BREAK_POINT", |
1593 | "DEBUG_0", | 1593 | "DEBUG_0", |
1594 | "DEBUG_1", | 1594 | "DEBUG_1", |
1595 | "DEBUG_2", | 1595 | "DEBUG_2", |