projects
/
linux.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
81151ce
)
wifi: ath11k: mac: fix long line
author
Kalle Valo
<quic_kvalo@quicinc.com>
Fri, 15 Jul 2022 10:35:16 +0000
(13:35 +0300)
committer
Kalle Valo
<quic_kvalo@quicinc.com>
Mon, 18 Jul 2022 10:02:23 +0000
(13:02 +0300)
Recent mac80211 API changes introduced a long line warning in ath11k:
drivers/net/wireless/ath/ath11k/mac.c:1404: line length of 92 exceeds 90 columns
Compile tested only.
Signed-off-by: Kalle Valo <quic_kvalo@quicinc.com>
Link:
https://lore.kernel.org/r/20220708170052.28615-1-kvalo@kernel.org
drivers/net/wireless/ath/ath11k/mac.c
patch
|
blob
|
history
diff --git
a/drivers/net/wireless/ath/ath11k/mac.c
b/drivers/net/wireless/ath/ath11k/mac.c
index 92e17d3c634e19710e942c5b8ec8b4513a09496a..d83d3c94459441a55718d4af44c11ba38a3c5e52 100644
(file)
--- a/
drivers/net/wireless/ath/ath11k/mac.c
+++ b/
drivers/net/wireless/ath/ath11k/mac.c
@@
-1401,7
+1401,8
@@
void ath11k_mac_bcn_tx_event(struct ath11k_vif *arvif)
if (!vif->bss_conf.color_change_active && !arvif->bcca_zero_sent)
return;
- if (vif->bss_conf.color_change_active && ieee80211_beacon_cntdwn_is_complete(vif)) {
+ if (vif->bss_conf.color_change_active &&
+ ieee80211_beacon_cntdwn_is_complete(vif)) {
arvif->bcca_zero_sent = true;
ieee80211_color_change_finish(vif);
return;