diff options
author | Johannes Berg <johannes.berg@intel.com> | 2013-06-28 15:39:18 +0400 |
---|---|---|
committer | Johannes Berg <johannes.berg@intel.com> | 2013-07-16 14:12:56 +0400 |
commit | e126b5d9c58870c0866357c951b4da9ed005f364 (patch) | |
tree | 3d666e900d1ebf4177c4054b381aa8574dd49d3b /drivers/net/wireless/iwlwifi/mvm/sta.c | |
parent | 2be01fa8f5cd6feffb6c50dae20d846dad8b37ba (diff) | |
download | linux-e126b5d9c58870c0866357c951b4da9ed005f364.tar.xz |
iwlwifi: mvm: remove unneeded argument from iwl_mvm_tx_protection()
The LQ command argument isn't needed, it's always taken from the
station struct that's already passed, remove the argument.
Reviewed-by: Emmanuel Grumbach <emmanuel.grumbach@intel.com>
Signed-off-by: Johannes Berg <johannes@sipsolutions.net>
Diffstat (limited to 'drivers/net/wireless/iwlwifi/mvm/sta.c')
-rw-r--r-- | drivers/net/wireless/iwlwifi/mvm/sta.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/net/wireless/iwlwifi/mvm/sta.c b/drivers/net/wireless/iwlwifi/mvm/sta.c index 62fe5209093b..0321bd37aa02 100644 --- a/drivers/net/wireless/iwlwifi/mvm/sta.c +++ b/drivers/net/wireless/iwlwifi/mvm/sta.c @@ -807,8 +807,7 @@ int iwl_mvm_sta_tx_agg_oper(struct iwl_mvm *mvm, struct ieee80211_vif *vif, * method for HT traffic * this function also sends the LQ command */ - return iwl_mvm_tx_protection(mvm, &mvmsta->lq_sta.lq, - mvmsta, true); + return iwl_mvm_tx_protection(mvm, mvmsta, true); /* * TODO: remove the TLC_RTS flag when we tear down the last * AGG session (agg_tids_count in DVM) |