summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVarsha Rao <rvarsha016@gmail.com>2018-07-25 20:49:48 +0200
committerRafael Marçalo <raroma09@gmail.com>2024-02-27 11:13:56 +0000
commitc803731a40044836ffeb48f355be7205d964015b (patch)
treee4caaebf2df60cab059a3f097b4d081748ac8c79
parentee7c07ffe83141ec672256049eea48cb71e33281 (diff)
ath6kl: Remove unnecessary parentheses
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>
-rw-r--r--drivers/net/wireless/ath/ath6kl/main.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/wireless/ath/ath6kl/main.c b/drivers/net/wireless/ath/ath6kl/main.c
index 1a6851827968..3695936e4b06 100644
--- a/drivers/net/wireless/ath/ath6kl/main.c
+++ b/drivers/net/wireless/ath/ath6kl/main.c
@@ -639,7 +639,7 @@ void ath6kl_connect_event(struct ath6kl_vif *vif, u16 channel, u8 *bssid,
memcpy(vif->bssid, bssid, sizeof(vif->bssid));
vif->bss_ch = channel;
- if ((vif->nw_type == INFRA_NETWORK)) {
+ if (vif->nw_type == INFRA_NETWORK) {
ath6kl_wmi_listeninterval_cmd(ar->wmi, vif->fw_vif_idx,
vif->listen_intvl_t, 0);
ath6kl_check_ch_switch(ar, channel);