Message ID | 20180725185305.4118-1-rvarsha016@gmail.com (mailing list archive) |
---|---|
State | Accepted |
Commit | bf05e0fe7da443a518db883112d4485ae65ba9d7 |
Delegated to: | Kalle Valo |
Headers | show |
Series | net: wireless: ath9k: Remove unnecessary parentheses | expand |
Varsha Rao <rvarsha016@gmail.com> wrote: > Remove extra parentheses to fix the clang warning of extraneous > parentheses. > > Signed-off-by: Varsha Rao <rvarsha016@gmail.com> > Signed-off-by: Kalle Valo <kvalo@codeaurora.org> Patch applied to ath-next branch of ath.git, thanks. bf05e0fe7da4 ath9k: Remove unnecessary parentheses
diff --git a/drivers/net/wireless/ath/ath9k/debug_sta.c b/drivers/net/wireless/ath/ath9k/debug_sta.c index a6f45f1bb5bb..ed8b77a74630 100644 --- a/drivers/net/wireless/ath/ath9k/debug_sta.c +++ b/drivers/net/wireless/ath/ath9k/debug_sta.c @@ -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++;
Remove extra parentheses to fix the clang warning of extraneous parentheses. Signed-off-by: Varsha Rao <rvarsha016@gmail.com> --- drivers/net/wireless/ath/ath9k/debug_sta.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)