wcn36xx: clean up some inconsistent indenting

Eliminate the follow smatch warnings:
drivers/net/wireless/ath/wcn36xx/main.c:1394 wcn36xx_get_survey() warn:
inconsistent indenting
drivers/net/wireless/ath/wcn36xx/txrx.c:379 wcn36xx_rx_skb() warn:
inconsistent indenting

Reported-by: Abaci Robot <abaci@linux.alibaba.com>
Signed-off-by: Yang Li <yang.lee@linux.alibaba.com>
Signed-off-by: Kalle Valo <quic_kvalo@quicinc.com>
Link: https://lore.kernel.org/r/20220201041548.18464-1-yang.lee@linux.alibaba.com
This commit is contained in:
Yang Li
2022-02-01 12:15:48 +08:00
committed by Kalle Valo
parent fe98a6137d
commit df507a7f86
2 changed files with 7 additions and 7 deletions

View File

@@ -1391,11 +1391,11 @@ static int wcn36xx_get_survey(struct ieee80211_hw *hw, int idx,
spin_unlock_irqrestore(&wcn->survey_lock, flags); spin_unlock_irqrestore(&wcn->survey_lock, flags);
wcn36xx_dbg(WCN36XX_DBG_MAC, wcn36xx_dbg(WCN36XX_DBG_MAC,
"ch %d rssi %d snr %d noise %d filled %x freq %d\n", "ch %d rssi %d snr %d noise %d filled %x freq %d\n",
HW_VALUE_CHANNEL(survey->channel->hw_value), HW_VALUE_CHANNEL(survey->channel->hw_value),
chan_survey->rssi, chan_survey->snr, survey->noise, chan_survey->rssi, chan_survey->snr, survey->noise,
survey->filled, survey->channel->center_freq); survey->filled, survey->channel->center_freq);
return 0; return 0;
} }

View File

@@ -376,8 +376,8 @@ int wcn36xx_rx_skb(struct wcn36xx *wcn, struct sk_buff *skb)
status.freq = WCN36XX_CENTER_FREQ(wcn); status.freq = WCN36XX_CENTER_FREQ(wcn);
} }
wcn36xx_update_survey(wcn, status.signal, get_snr(bd), wcn36xx_update_survey(wcn, status.signal, get_snr(bd),
status.band, status.freq); status.band, status.freq);
if (bd->rate_id < ARRAY_SIZE(wcn36xx_rate_table)) { if (bd->rate_id < ARRAY_SIZE(wcn36xx_rate_table)) {
rate = &wcn36xx_rate_table[bd->rate_id]; rate = &wcn36xx_rate_table[bd->rate_id];