mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-05 17:38:27 +02:00
58b587ee61
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@27562 3c298f89-4303-0410-b956-a3cf2f4a3e73
14 lines
448 B
Diff
14 lines
448 B
Diff
--- a/drivers/net/wireless/ath/ath9k/ar9002_phy.c
|
|
+++ b/drivers/net/wireless/ath/ath9k/ar9002_phy.c
|
|
@@ -111,7 +111,9 @@ static int ar9002_hw_set_channel(struct
|
|
|
|
switch (ah->eep_ops->get_eeprom(ah, EEP_FRAC_N_5G)) {
|
|
case 0:
|
|
- if ((freq % 20) == 0)
|
|
+ if (IS_CHAN_HALF_RATE(chan) || IS_CHAN_QUARTER_RATE(chan))
|
|
+ aModeRefSel = 0;
|
|
+ else if ((freq % 20) == 0)
|
|
aModeRefSel = 3;
|
|
else if ((freq % 10) == 0)
|
|
aModeRefSel = 2;
|