diff options
| author | Arnd Bergmann <[email protected]> | 2025-02-25 14:53:53 +0000 |
|---|---|---|
| committer | Johannes Berg <[email protected]> | 2025-02-26 14:42:08 +0000 |
| commit | cf6b9ba172ddc1eb989695225c456c219370f1a5 (patch) | |
| tree | 3f9f24b7872df8c4bab75cf92412cdf1af93c881 /drivers/net/wireless/intel/iwlegacy/common.h | |
| parent | Merge tag 'rtw-next-2025-02-10-v2' of https://github.com/pkshih/rtw (diff) | |
| download | kernel-cf6b9ba172ddc1eb989695225c456c219370f1a5.tar.gz kernel-cf6b9ba172ddc1eb989695225c456c219370f1a5.zip | |
wifi: iwlegacy: don't warn for unused variables with DEBUG_FS=n
The reference to il_rate_mcs is inside of an #ifdef, causing a W=1 warning:
drivers/net/wireless/intel/iwlegacy/4965-rs.c:189:38: error: unused variable 'il_rate_mcs' [-Werror,-Wunused-const-variable]
static const struct il_rate_mcs_info il_rate_mcs[RATE_COUNT] = {
Replace the #ifdef with a PTR_IF() for better compile time analysis.
The dead code will still get eliminated, but the warning goes away.
Signed-off-by: Arnd Bergmann <[email protected]>
Link: https://patch.msgid.link/[email protected]
Signed-off-by: Johannes Berg <[email protected]>
Diffstat (limited to 'drivers/net/wireless/intel/iwlegacy/common.h')
| -rw-r--r-- | drivers/net/wireless/intel/iwlegacy/common.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/drivers/net/wireless/intel/iwlegacy/common.h b/drivers/net/wireless/intel/iwlegacy/common.h index 92285412ab10..52610f5e57a3 100644 --- a/drivers/net/wireless/intel/iwlegacy/common.h +++ b/drivers/net/wireless/intel/iwlegacy/common.h @@ -2815,9 +2815,7 @@ struct il_lq_sta { struct il_scale_tbl_info lq_info[LQ_SIZE]; /* "active", "search" */ struct il_traffic_load load[TID_MAX_LOAD_COUNT]; u8 tx_agg_tid_en; -#ifdef CONFIG_MAC80211_DEBUGFS u32 dbg_fixed_rate; -#endif struct il_priv *drv; /* used to be in sta_info */ |
