diff options
author | Joe Perches <joe@perches.com> | 2011-07-09 08:20:24 +0200 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2011-07-13 20:49:34 +0200 |
commit | 861d9c3f25d216ccbec71a45280eff17fb912434 (patch) | |
tree | b076180cf8e3a41ea221b660568166bc1c21b48a | |
parent | iwlagn: fix warning in testmode attribute table (diff) | |
download | linux-861d9c3f25d216ccbec71a45280eff17fb912434.tar.xz linux-861d9c3f25d216ccbec71a45280eff17fb912434.zip |
iwlegacy: Add missing comma between constant string array
Multiple quoted strings are concatenated without comma separators.
Signed-off-by: Joe Perches <joe@perches.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
-rw-r--r-- | drivers/net/wireless/iwlegacy/iwl4965-base.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/wireless/iwlegacy/iwl4965-base.c b/drivers/net/wireless/iwlegacy/iwl4965-base.c index 46242d2aa5ad..14334668034e 100644 --- a/drivers/net/wireless/iwlegacy/iwl4965-base.c +++ b/drivers/net/wireless/iwlegacy/iwl4965-base.c @@ -1484,7 +1484,7 @@ static const char * const 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", |