diff options
author | Christian Lamparter <chunkeey@googlemail.com> | 2009-11-13 18:57:58 -0500 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2009-11-18 17:09:10 -0500 |
commit | 7d57b73a73040525dfe22c56d823f146711ff971 (patch) | |
tree | 2885a3ab399ec9f21cd00189cfcf2a3d8ac8a014 /drivers/net/wireless/ath | |
parent | 9e595d24b13a021ead42bedd5edba8801b0da6cd (diff) |
ar9170: do not discard valuable DUPOFDM frames
This patch enables the driver to process all incoming
dupofdm-modulated frames when operating in HT40 mode.
Signed-off-by: Christian Lamparter <chunkeey@googlemail.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers/net/wireless/ath')
-rw-r--r-- | drivers/net/wireless/ath/ar9170/main.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/net/wireless/ath/ar9170/main.c b/drivers/net/wireless/ath/ar9170/main.c index 7e59b82e64d3..bd2a276c870a 100644 --- a/drivers/net/wireless/ath/ar9170/main.c +++ b/drivers/net/wireless/ath/ar9170/main.c | |||
@@ -850,6 +850,7 @@ static int ar9170_rx_mac_status(struct ar9170 *ar, | |||
850 | } | 850 | } |
851 | break; | 851 | break; |
852 | 852 | ||
853 | case AR9170_RX_STATUS_MODULATION_DUPOFDM: | ||
853 | case AR9170_RX_STATUS_MODULATION_OFDM: | 854 | case AR9170_RX_STATUS_MODULATION_OFDM: |
854 | switch (head->plcp[0] & 0xf) { | 855 | switch (head->plcp[0] & 0xf) { |
855 | case 0xb: | 856 | case 0xb: |
@@ -897,8 +898,7 @@ static int ar9170_rx_mac_status(struct ar9170 *ar, | |||
897 | status->flag |= RX_FLAG_HT; | 898 | status->flag |= RX_FLAG_HT; |
898 | break; | 899 | break; |
899 | 900 | ||
900 | case AR9170_RX_STATUS_MODULATION_DUPOFDM: | 901 | default: |
901 | /* XXX */ | ||
902 | if (ar9170_nag_limiter(ar)) | 902 | if (ar9170_nag_limiter(ar)) |
903 | printk(KERN_ERR "%s: invalid modulation\n", | 903 | printk(KERN_ERR "%s: invalid modulation\n", |
904 | wiphy_name(ar->hw->wiphy)); | 904 | wiphy_name(ar->hw->wiphy)); |