Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit bf05e0fe authored by Varsha Rao's avatar Varsha Rao Committed by Kalle Valo
Browse files

ath9k: Remove unnecessary parentheses



Remove extra parentheses to fix the clang warning of extraneous
parentheses.

Signed-off-by: default avatarVarsha Rao <rvarsha016@gmail.com>
Signed-off-by: default avatarKalle Valo <kvalo@codeaurora.org>
parent 06ae8dc0
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -116,7 +116,7 @@ void ath_debug_rate_stats(struct ath_softc *sc,
		if (rxs->rate_idx >= ARRAY_SIZE(rstats->ht_stats))
			goto exit;

		if ((rxs->bw == RATE_INFO_BW_40))
		if (rxs->bw == RATE_INFO_BW_40)
			rstats->ht_stats[rxs->rate_idx].ht40_cnt++;
		else
			rstats->ht_stats[rxs->rate_idx].ht20_cnt++;