diff options
author | Toomas Soome <tsoome@me.com> | 2022-02-16 14:27:43 +0200 |
---|---|---|
committer | Toomas Soome <tsoome@me.com> | 2022-02-18 00:31:04 +0200 |
commit | b302a2007db5ab3847583f9a046d41c11789c092 (patch) | |
tree | 7283fd17c31acf7440e2b02a7f2657dbe890a4a5 | |
parent | 6f0e4dc91b854250fff5c24de2d27aed3375ac69 (diff) | |
download | illumos-joyent-b302a2007db5ab3847583f9a046d41c11789c092.tar.gz |
14512 iwn: suspicious concatenation of string literals
Reviewed by: Yuri Pankov <ypankov@tintri.com>
Reviewed by: Andy Fiddaman <andy@omnios.org>
Reviewed by: Andrew Stormont <andyjstormont@gmail.com>
Reviewed by: Marcel Telka <marcel@telka.sk>
Approved by: Dan McDonald <danmcd@joyent.com>
-rw-r--r-- | usr/src/uts/common/io/iwn/if_iwnreg.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/usr/src/uts/common/io/iwn/if_iwnreg.h b/usr/src/uts/common/io/iwn/if_iwnreg.h index 78bfc3088f..e6d6d6d4b8 100644 --- a/usr/src/uts/common/io/iwn/if_iwnreg.h +++ b/usr/src/uts/common/io/iwn/if_iwnreg.h @@ -100,10 +100,10 @@ #define IWN_MEM_WADDR 0x410 #define IWN_MEM_WDATA 0x418 #define IWN_MEM_RDATA 0x41c -#define IWN_PRPH_WADDR 0x444 -#define IWN_PRPH_RADDR 0x448 -#define IWN_PRPH_WDATA 0x44c -#define IWN_PRPH_RDATA 0x450 +#define IWN_PRPH_WADDR 0x444 +#define IWN_PRPH_RADDR 0x448 +#define IWN_PRPH_WDATA 0x44c +#define IWN_PRPH_RDATA 0x450 #define IWN_HBUS_TARG_WRPTR 0x460 /* @@ -1694,8 +1694,8 @@ static const struct iwn_chan_band { { 11, { 36, 44, 52, 60, 100, 108, 116, 124, 132, 149, 157 } } }; -#define IWN1000_OTP_NBLOCKS 3 -#define IWN6000_OTP_NBLOCKS 4 +#define IWN1000_OTP_NBLOCKS 3 +#define IWN6000_OTP_NBLOCKS 4 #define IWN6050_OTP_NBLOCKS 7 /* HW rate indices. */ @@ -1971,7 +1971,7 @@ static const char * const iwn_fw_errmsg[] = { "NMI_INTERRUPT_DATA_ACTION_PT", "NMI_TRM_HW_ER", "NMI_INTERRUPT_TRM", - "NMI_INTERRUPT_BREAKPOINT" + "NMI_INTERRUPT_BREAKPOINT", "DEBUG_0", "DEBUG_1", "DEBUG_2", |