1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-11-27 19:37:10 +02:00

ath9k: enable rx for tx antennas earlier (and only for multi-stream devices) to fix some validation corner cases

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@32509 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
nbd 2012-06-27 01:29:56 +00:00
parent 8a31cf1a07
commit 5f0e5c8f58

View File

@ -1,6 +1,6 @@
--- a/drivers/net/wireless/ath/ath9k/main.c
+++ b/drivers/net/wireless/ath/ath9k/main.c
@@ -1929,14 +1929,29 @@ static u32 fill_chainmask(u32 cap, u32 n
@@ -1929,12 +1929,29 @@ static u32 fill_chainmask(u32 cap, u32 n
return filled;
}
@ -24,10 +24,10 @@
struct ath_hw *ah = sc->sc_ah;
- if (!rx_ant || !tx_ant)
+ if (ah->caps.rx_chainmask != 1)
+ rx_ant |= tx_ant;
+
+ if (!validate_antenna_mask(ah, rx_ant) || !tx_ant)
return -EINVAL;
+ rx_ant |= tx_ant;
sc->ant_rx = rx_ant;
sc->ant_tx = tx_ant;