aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSven Eckelmann <sven@narfation.org>2013-01-31 04:26:44 -0500
committerJohn W. Linville <linville@tuxdriver.com>2013-02-01 14:27:23 -0500
commitc672a3abb79b40e7cd39b50a84ea5c5c772e10fa (patch)
tree910e5a3e8d54904553a14e71f04bb52287dcda02
parent5e3175fb6755a3d4ec073c0e739581b23b3855dc (diff)
ath9k: Select RELAY for ATH9K_DEBUGFS
The spectral scan support activated through ATH9K_DEBUGFS depends on RELAY for the kernel->userspace communication. Not activating RELAY causes build failures. The RELAY is added as select instead of depend to do it similar like the only other user of RELAY: BLK_DEV_IO_TRACE Signed-off-by: Sven Eckelmann <sven@narfation.org> Signed-off-by: John W. Linville <linville@tuxdriver.com>
-rw-r--r--drivers/net/wireless/ath/ath9k/Kconfig1
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/net/wireless/ath/ath9k/Kconfig b/drivers/net/wireless/ath/ath9k/Kconfig
index 7647ed6b73d7..17507dc8a1e7 100644
--- a/drivers/net/wireless/ath/ath9k/Kconfig
+++ b/drivers/net/wireless/ath/ath9k/Kconfig
@@ -58,6 +58,7 @@ config ATH9K_DEBUGFS
58 bool "Atheros ath9k debugging" 58 bool "Atheros ath9k debugging"
59 depends on ATH9K 59 depends on ATH9K
60 select MAC80211_DEBUGFS 60 select MAC80211_DEBUGFS
61 select RELAY
61 ---help--- 62 ---help---
62 Say Y, if you need access to ath9k's statistics for 63 Say Y, if you need access to ath9k's statistics for
63 interrupts, rate control, etc. 64 interrupts, rate control, etc.