From: Colin Ian King <colin.king@xxxxxxxxxxxxx> The variable phy_id is being initialized with a value that is never read and it is being updated later with a new value. The initialization is redundant and can be removed. Addresses-Coverity: ("Unused value") Signed-off-by: Colin Ian King <colin.king@xxxxxxxxxxxxx> --- drivers/net/wireless/intel/iwlwifi/mvm/quota.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/net/wireless/intel/iwlwifi/mvm/quota.c b/drivers/net/wireless/intel/iwlwifi/mvm/quota.c index 3d0166df2002..4a0ba7f44900 100644 --- a/drivers/net/wireless/intel/iwlwifi/mvm/quota.c +++ b/drivers/net/wireless/intel/iwlwifi/mvm/quota.c @@ -90,7 +90,7 @@ static void iwl_mvm_adjust_quota_for_noa(struct iwl_mvm *mvm, { #ifdef CONFIG_NL80211_TESTMODE struct iwl_mvm_vif *mvmvif; - int i, phy_id = -1, beacon_int = 0; + int i, phy_id, beacon_int = 0; if (!mvm->noa_duration || !mvm->noa_vif) return; -- 2.29.2