2018-07-25 20:06:16

by Varsha Rao

[permalink] [raw]
Subject: [PATCH] net: wireless: ath9k: Remove unnecessary parentheses

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

Signed-off-by: Varsha Rao <[email protected]>
---
drivers/net/wireless/ath/ath9k/debug_sta.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

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++;
--
2.17.0


2018-08-28 17:36:02

by Kalle Valo

[permalink] [raw]
Subject: Re: [PATCH] net: wireless: ath9k: Remove unnecessary parentheses

Varsha Rao <[email protected]> wrote:

> Remove extra parentheses to fix the clang warning of extraneous
> parentheses.
>
> Signed-off-by: Varsha Rao <[email protected]>
> Signed-off-by: Kalle Valo <[email protected]>

Patch applied to ath-next branch of ath.git, thanks.

bf05e0fe7da4 ath9k: Remove unnecessary parentheses

--
https://patchwork.kernel.org/patch/10544571/

https://wireless.wiki.kernel.org/en/developers/documentation/submittingpatches