ath9k_hw: Fix paprd training frame failure.

paprd training frame fails in some rates. Fix the rate mask.

Signed-off-by: Senthil Balasubramanian <senthilkumar@atheros.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
This commit is contained in:
Senthil Balasubramanian 2010-11-10 05:03:09 -08:00 committed by John W. Linville
parent ef5a6a7573
commit 3ceb801bff
1 changed files with 4 additions and 4 deletions

View File

@ -144,8 +144,8 @@ static const struct ar9300_eeprom ar9300_default = {
.txEndToRxOn = 0x2, .txEndToRxOn = 0x2,
.txFrameToXpaOn = 0xe, .txFrameToXpaOn = 0xe,
.thresh62 = 28, .thresh62 = 28,
.papdRateMaskHt20 = LE32(0x80c080), .papdRateMaskHt20 = LE32(0x0cf0e0e0),
.papdRateMaskHt40 = LE32(0x80c080), .papdRateMaskHt40 = LE32(0x6cf0e0e0),
.futureModal = { .futureModal = {
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
}, },
@ -346,8 +346,8 @@ static const struct ar9300_eeprom ar9300_default = {
.txEndToRxOn = 0x2, .txEndToRxOn = 0x2,
.txFrameToXpaOn = 0xe, .txFrameToXpaOn = 0xe,
.thresh62 = 28, .thresh62 = 28,
.papdRateMaskHt20 = LE32(0xf0e0e0), .papdRateMaskHt20 = LE32(0x0c80c080),
.papdRateMaskHt40 = LE32(0xf0e0e0), .papdRateMaskHt40 = LE32(0x0080c080),
.futureModal = { .futureModal = {
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
}, },