wifi: ath: remove unused-but-set parameter
authorArnd Bergmann <arnd@arndb.de>
Mon, 14 Aug 2023 07:32:23 +0000 (09:32 +0200)
committerKalle Valo <quic_kvalo@quicinc.com>
Wed, 23 Aug 2023 14:12:09 +0000 (17:12 +0300)
This has never been used since the driver was merged, but it now causes
a W=1 warning in recent clang versions

drivers/net/wireless/ath/ath9k/main.c:1566:21: error: parameter 'changed_flags' set but not used [-Werror,-Wunused-but-set-parameter]
drivers/net/wireless/ath/ath9k/htc_drv_main.c:1258:25: error: parameter 'changed_flags' set but not used [-Werror,-Wunused-but-set-parameter]
drivers/net/wireless/ath/ath5k/mac80211-ops.c:367:62: error: parameter 'changed_flags' set but not used [-Werror,-Wunused-but-set-parameter]

Remove the bit manipulation on the otherwise unused parameter.

Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Reviewed-by: Jeff Johnson <quic_jjohnson@quicinc.com>
Acked-by: Toke Høiland-Jørgensen <toke@toke.dk>
Signed-off-by: Kalle Valo <quic_kvalo@quicinc.com>
Link: https://lore.kernel.org/r/20230814073255.1065242-1-arnd@kernel.org
drivers/net/wireless/ath/ath12k/mac.c
drivers/net/wireless/ath/ath5k/mac80211-ops.c
drivers/net/wireless/ath/ath9k/htc_drv_main.c
drivers/net/wireless/ath/ath9k/main.c

index 6bb8206..88346e6 100644 (file)
@@ -5660,7 +5660,6 @@ static void ath12k_mac_op_configure_filter(struct ieee80211_hw *hw,
 
        mutex_lock(&ar->conf_mutex);
 
-       changed_flags &= SUPPORTED_FILTERS;
        *total_flags &= SUPPORTED_FILTERS;
        ar->filter_flags = *total_flags;
 
@@ -5678,8 +5677,8 @@ static void ath12k_mac_op_configure_filter(struct ieee80211_hw *hw,
                            "fail to set monitor filter: %d\n", ret);
        }
        ath12k_dbg(ar->ab, ATH12K_DBG_MAC,
-                  "changed_flags:0x%x, total_flags:0x%x, reset_flag:%d\n",
-                  changed_flags, *total_flags, reset_flag);
+                  "total_flags:0x%x, reset_flag:%d\n",
+                  *total_flags, reset_flag);
 
        mutex_unlock(&ar->conf_mutex);
 }
index 11ed30d..c630343 100644 (file)
@@ -382,7 +382,6 @@ ath5k_configure_filter(struct ieee80211_hw *hw, unsigned int changed_flags,
        mfilt[1] = multicast >> 32;
 
        /* Only deal with supported flags */
-       changed_flags &= SUPPORTED_FIF_FLAGS;
        *new_flags &= SUPPORTED_FIF_FLAGS;
 
        /* If HW detects any phy or radar errors, leave those filters on.
index 44e02cf..9a9b521 100644 (file)
@@ -1264,7 +1264,6 @@ static void ath9k_htc_configure_filter(struct ieee80211_hw *hw,
        u32 rfilt;
 
        mutex_lock(&priv->mutex);
-       changed_flags &= SUPPORTED_FILTERS;
        *total_flags &= SUPPORTED_FILTERS;
 
        if (test_bit(ATH_OP_INVALID, &common->op_flags)) {
index 6360d33..1494fee 100644 (file)
@@ -1571,7 +1571,6 @@ static void ath9k_configure_filter(struct ieee80211_hw *hw,
        struct ath_chanctx *ctx;
        u32 rfilt;
 
-       changed_flags &= SUPPORTED_FILTERS;
        *total_flags &= SUPPORTED_FILTERS;
 
        spin_lock_bh(&sc->chan_lock);