diff options
author | Emmanuel Grumbach <emmanuel.grumbach@intel.com> | 2014-06-05 04:32:41 -0400 |
---|---|---|
committer | Emmanuel Grumbach <emmanuel.grumbach@intel.com> | 2014-07-07 14:41:25 -0400 |
commit | 589a6ba46bdf9a4a4817fef011ff61905a1aa244 (patch) | |
tree | 9758d41e5039e40a67cc3079dd1c42ad121ffba9 /drivers/net | |
parent | 9b1fcc11a83504a20de3aa4ef7d300f17e225245 (diff) |
iwlwifi: mvm: minor fix in comment
The comment was not accurate, we are talking about the frames
*for* the station and not from the station.
Reviewed-by: Johannes Berg <johannes.berg@intel.com>
Signed-off-by: Emmanuel Grumbach <emmanuel.grumbach@intel.com>
Diffstat (limited to 'drivers/net')
-rw-r--r-- | drivers/net/wireless/iwlwifi/mvm/tx.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/wireless/iwlwifi/mvm/tx.c b/drivers/net/wireless/iwlwifi/mvm/tx.c index f5c0982d297c..e9ff38635c21 100644 --- a/drivers/net/wireless/iwlwifi/mvm/tx.c +++ b/drivers/net/wireless/iwlwifi/mvm/tx.c | |||
@@ -722,7 +722,7 @@ static void iwl_mvm_rx_tx_cmd_single(struct iwl_mvm *mvm, | |||
722 | /* We can't free more than one frame at once on a shared queue */ | 722 | /* We can't free more than one frame at once on a shared queue */ |
723 | WARN_ON(skb_freed > 1); | 723 | WARN_ON(skb_freed > 1); |
724 | 724 | ||
725 | /* If we have still frames from this STA nothing to do here */ | 725 | /* If we have still frames for this STA nothing to do here */ |
726 | if (!atomic_sub_and_test(skb_freed, &mvm->pending_frames[sta_id])) | 726 | if (!atomic_sub_and_test(skb_freed, &mvm->pending_frames[sta_id])) |
727 | goto out; | 727 | goto out; |
728 | 728 | ||