diff options
author | Johannes Berg <johannes.berg@intel.com> | 2012-07-02 15:40:18 +0200 |
---|---|---|
committer | Johannes Berg <johannes.berg@intel.com> | 2012-07-02 15:40:18 +0200 |
commit | cb831b537d50d21f6afb5dffbde4cf6523627461 (patch) | |
tree | 7d9b48f51264335f8338d786cbe211bda320a92e /net/mac80211/tx.c | |
parent | mac80211: include VHT capability IE in probe requests (diff) | |
download | linux-cb831b537d50d21f6afb5dffbde4cf6523627461.tar.xz linux-cb831b537d50d21f6afb5dffbde4cf6523627461.zip |
mac80211: remove tx_frags driver callback
The implementation of tx_frags is buggy due to
not handling queue stop, and there's no driver
implementing it so remove it.
Signed-off-by: Johannes Berg <johannes.berg@intel.com>
Diffstat (limited to 'net/mac80211/tx.c')
-rw-r--r-- | net/mac80211/tx.c | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/net/mac80211/tx.c b/net/mac80211/tx.c index 4990f4fb5864..364a1e7b4afa 100644 --- a/net/mac80211/tx.c +++ b/net/mac80211/tx.c @@ -1295,11 +1295,8 @@ static bool __ieee80211_tx(struct ieee80211_local *local, break; } - if (local->ops->tx_frags) - drv_tx_frags(local, vif, pubsta, skbs); - else - result = ieee80211_tx_frags(local, vif, pubsta, skbs, - txpending); + result = ieee80211_tx_frags(local, vif, pubsta, skbs, + txpending); ieee80211_tpt_led_trig_tx(local, fc, led_len); ieee80211_led_tx(local, 1); |