wifi: ath10k: Remove redundant assignment to changed_flags
authorJiapeng Chong <jiapeng.chong@linux.alibaba.com>
Tue, 7 Feb 2023 05:24:10 +0000 (13:24 +0800)
committerKalle Valo <quic_kvalo@quicinc.com>
Wed, 22 Feb 2023 10:04:33 +0000 (12:04 +0200)
Variable changed_flags is assigned, but is not effectively used, so
delete it.

drivers/net/wireless/ath/ath10k/mac.c:6024:22: warning: parameter 'changed_flags' set but not used.

Reported-by: Abaci Robot <abaci@linux.alibaba.com>
Link: https://bugzilla.openanolis.cn/show_bug.cgi?id=3963
Signed-off-by: Jiapeng Chong <jiapeng.chong@linux.alibaba.com>
Reviewed-by: Simon Horman <simon.horman@corigine.com>
Signed-off-by: Kalle Valo <quic_kvalo@quicinc.com>
Link: https://lore.kernel.org/r/20230207052410.26337-1-jiapeng.chong@linux.alibaba.com
drivers/net/wireless/ath/ath10k/mac.c

index ec8d5b2..7675858 100644 (file)
@@ -6030,7 +6030,6 @@ static void ath10k_configure_filter(struct ieee80211_hw *hw,
 
        mutex_lock(&ar->conf_mutex);
 
-       changed_flags &= SUPPORTED_FILTERS;
        *total_flags &= SUPPORTED_FILTERS;
        ar->filter_flags = *total_flags;