projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
861d9c3
)
iwlagn: Add missing comma between constant string array
author
Joe Perches
<
[email protected]
>
Sat, 9 Jul 2011 06:20:25 +0000
(23:20 -0700)
committer
John W. Linville
<
[email protected]
>
Wed, 13 Jul 2011 18:49:35 +0000
(14:49 -0400)
Multiple quoted strings are concatenated without comma separators.
Make the array const while there.
Signed-off-by: Joe Perches <
[email protected]
>
Acked-by: Wey-Yi Guy <
[email protected]
>
Signed-off-by: John W. Linville <
[email protected]
>
drivers/net/wireless/iwlwifi/iwl-agn.c
patch
|
blob
|
history
diff --git
a/drivers/net/wireless/iwlwifi/iwl-agn.c
b/drivers/net/wireless/iwlwifi/iwl-agn.c
index 3f2b9d6d2573a15814ac743a317a27a3c2a775c6..38a1e4f58829ec151402de9d66684059981e25a2 100644
(file)
--- 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)
release_firmware(ucode_raw);
}
-static const char *desc_lookup_text[] = {
+static const char *
const
desc_lookup_text[] = {
"OK",
"FAIL",
"BAD_PARAM",
@@
-1589,7
+1589,7
@@
static const char *desc_lookup_text[] = {
"NMI_INTERRUPT_DATA_ACTION_PT",
"NMI_TRM_HW_ER",
"NMI_INTERRUPT_TRM",
- "NMI_INTERRUPT_BREAK_POINT"
+ "NMI_INTERRUPT_BREAK_POINT"
,
"DEBUG_0",
"DEBUG_1",
"DEBUG_2",