aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/wireless/ath9k
diff options
context:
space:
mode:
authorJohannes Berg <johannes@sipsolutions.net>2008-12-09 06:26:14 -0500
committerJohn W. Linville <linville@tuxdriver.com>2008-12-12 14:01:31 -0500
commite4f2a3458f451d5fb6aa55aac6aaadcf220d0da1 (patch)
treef2c579121ce3d2059548209deb6c134deb6bc967 /drivers/net/wireless/ath9k
parent21a49fc674afd00db6de2f729f8c8e4fab2f1bdf (diff)
ath9k: remove fragmentation workaround again
Looking at the RC algorithm this is no longer necessary. Signed-off-by: Johannes Berg <johannes@sipsolutions.net> Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers/net/wireless/ath9k')
-rw-r--r--drivers/net/wireless/ath9k/main.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/drivers/net/wireless/ath9k/main.c b/drivers/net/wireless/ath9k/main.c
index ebd531e574f..9455a693987 100644
--- a/drivers/net/wireless/ath9k/main.c
+++ b/drivers/net/wireless/ath9k/main.c
@@ -2487,11 +2487,6 @@ static int ath9k_ampdu_action(struct ieee80211_hw *hw,
2487 return ret; 2487 return ret;
2488} 2488}
2489 2489
2490static int ath9k_no_fragmentation(struct ieee80211_hw *hw, u32 value)
2491{
2492 return -EOPNOTSUPP;
2493}
2494
2495static struct ieee80211_ops ath9k_ops = { 2490static struct ieee80211_ops ath9k_ops = {
2496 .tx = ath9k_tx, 2491 .tx = ath9k_tx,
2497 .start = ath9k_start, 2492 .start = ath9k_start,
@@ -2508,7 +2503,6 @@ static struct ieee80211_ops ath9k_ops = {
2508 .get_tsf = ath9k_get_tsf, 2503 .get_tsf = ath9k_get_tsf,
2509 .reset_tsf = ath9k_reset_tsf, 2504 .reset_tsf = ath9k_reset_tsf,
2510 .ampdu_action = ath9k_ampdu_action, 2505 .ampdu_action = ath9k_ampdu_action,
2511 .set_frag_threshold = ath9k_no_fragmentation,
2512}; 2506};
2513 2507
2514static struct { 2508static struct {