aboutsummaryrefslogtreecommitdiffstats
path: root/drivers
diff options
context:
space:
mode:
authorSven Eckelmann <sven@narfation.org>2013-01-31 10:26:45 +0100
committerJohn W. Linville <linville@tuxdriver.com>2013-02-01 14:27:23 -0500
commitbd2ffe14d489ad12024d43bace21c6b6793acd2c (patch)
tree3a0fe8b39c69d5a3ae21053e1dd5b9870272bea0 /drivers
parentath9k: Select RELAY for ATH9K_DEBUGFS (diff)
downloadlinux-dev-bd2ffe14d489ad12024d43bace21c6b6793acd2c.tar.xz
linux-dev-bd2ffe14d489ad12024d43bace21c6b6793acd2c.zip
ath9k: Only process fft samples when ATH9K_DEBUGFS is enabled
The code can only be used when ATH9k_DEBUGFS is enabled an not when ATH_DEBUG is activated. Still enabling it would cause build failures. Signed-off-by: Sven Eckelmann <sven@narfation.org> Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers')
-rw-r--r--drivers/net/wireless/ath/ath9k/recv.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/wireless/ath/ath9k/recv.c b/drivers/net/wireless/ath/ath9k/recv.c
index 87497f3938b6..6d4a6ebe5035 100644
--- a/drivers/net/wireless/ath/ath9k/recv.c
+++ b/drivers/net/wireless/ath/ath9k/recv.c
@@ -1027,7 +1027,7 @@ static s8 fix_rssi_inv_only(u8 rssi_val)
static int ath_process_fft(struct ath_softc *sc, struct ieee80211_hdr *hdr,
struct ath_rx_status *rs, u64 tsf)
{
-#ifdef CONFIG_ATH_DEBUG
+#ifdef CONFIG_ATH9K_DEBUGFS
struct ath_hw *ah = sc->sc_ah;
u8 bins[SPECTRAL_HT20_NUM_BINS];
u8 *vdata = (u8 *)hdr;