diff options
author | Jakub Kicinski <kuba@kernel.org> | 2022-05-20 21:43:14 +0200 |
---|---|---|
committer | Jakub Kicinski <kuba@kernel.org> | 2022-05-23 02:23:05 +0200 |
commit | e95032988053c17baf6c7e27024f5103a19a5f4a (patch) | |
tree | b7d515f4dcb15ec18c0a226b1e505eacf44afeb2 | |
parent | wifi: plfxlc: remove redundant NULL-check for GCC 12 (diff) | |
download | linux-e95032988053c17baf6c7e27024f5103a19a5f4a.tar.xz linux-e95032988053c17baf6c7e27024f5103a19a5f4a.zip |
wifi: ath9k: silence array-bounds warning on GCC 12
GCC 12 says:
drivers/net/wireless/ath/ath9k/mac.c: In function ‘ath9k_hw_resettxqueue’:
drivers/net/wireless/ath/ath9k/mac.c:373:22: warning: array subscript 32 is above array bounds of ‘struct ath9k_tx_queue_info[10]’ [-Warray-bounds]
373 | qi = &ah->txq[q];
| ~~~~~~~^~~
I don't know where it got the 32 from, relegate the warning to W=1+.
Acked-by: Kalle Valo <kvalo@kernel.org>
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
-rw-r--r-- | drivers/net/wireless/ath/ath9k/Makefile | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/drivers/net/wireless/ath/ath9k/Makefile b/drivers/net/wireless/ath/ath9k/Makefile index eff94bcd1f0a..9bdfcee2f448 100644 --- a/drivers/net/wireless/ath/ath9k/Makefile +++ b/drivers/net/wireless/ath/ath9k/Makefile @@ -45,6 +45,11 @@ ath9k_hw-y:= \ ar9003_eeprom.o \ ar9003_paprd.o +# FIXME: temporarily silence -Warray-bounds on non W=1+ builds +ifndef KBUILD_EXTRA_WARN +CFLAGS_mac.o += -Wno-array-bounds +endif + ath9k_hw-$(CONFIG_ATH9K_WOW) += ar9003_wow.o ath9k_hw-$(CONFIG_ATH9K_BTCOEX_SUPPORT) += btcoex.o \ |