Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(16)

Unified Diff: chromeos/compat-wireless/drivers/net/wireless/ath/ath9k/hw.c

Issue 6393011: ath9k: Add pktlog support Base URL: ssh://git@gitrw.chromium.org:9222/kernel.git@master
Patch Set: add missing files Created 9 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chromeos/compat-wireless/drivers/net/wireless/ath/ath9k/hw.c
diff --git a/chromeos/compat-wireless/drivers/net/wireless/ath/ath9k/hw.c b/chromeos/compat-wireless/drivers/net/wireless/ath/ath9k/hw.c
index 301db36992995d26554faf5a23e175536a69c493..4f4e6bcd6ad2eb2329921ae62960d114641ec456 100644
--- a/chromeos/compat-wireless/drivers/net/wireless/ath/ath9k/hw.c
+++ b/chromeos/compat-wireless/drivers/net/wireless/ath/ath9k/hw.c
@@ -2456,7 +2456,7 @@ void ath9k_hw_setrxfilter(struct ath_hw *ah, u32 bits)
phybits |= AR_PHY_ERR_RADAR;
if (bits & ATH9K_RX_FILTER_PHYERR)
phybits |= AR_PHY_ERR_OFDM_TIMING | AR_PHY_ERR_CCK_TIMING;
- REG_WRITE(ah, AR_PHY_ERR, phybits);
+ REG_WRITE(ah, AR_PHY_ERR, 0xffffffff);
if (phybits)
REG_WRITE(ah, AR_RXCFG,

Powered by Google App Engine
This is Rietveld 408576698