diff options
author | Krzysztof Kozlowski <krzk@kernel.org> | 2020-08-20 21:40:49 +0200 |
---|---|---|
committer | Kalle Valo <kvalo@codeaurora.org> | 2020-08-27 12:18:07 +0200 |
commit | 72cdab808714b1ec24b0c7bdebed163ce791f01f (patch) | |
tree | 59379e1f78e03f13ffd38ea75b295cf4bab4edfb /drivers/net/wireless/ath | |
parent | ath9k: ar5008_initvals: Move ar5416Bank{0,1,2,3,7} to where they are used (diff) | |
download | linux-72cdab808714b1ec24b0c7bdebed163ce791f01f.tar.xz linux-72cdab808714b1ec24b0c7bdebed163ce791f01f.zip |
ath9k: Do not select MAC80211_LEDS by default
The ath9k driver hides all LEDs related code behind CONFIG_MAC80211_LEDS
ifdefs so it does not really require the MAC80211_LEDS. The code builds
fine. Convert the "select" into "imply" to allow disabling LED trigger
when not needed.
Signed-off-by: Krzysztof Kozlowski <krzk@kernel.org>
Signed-off-by: Kalle Valo <kvalo@codeaurora.org>
Link: https://lore.kernel.org/r/20200820194049.28055-1-krzk@kernel.org
Diffstat (limited to 'drivers/net/wireless/ath')
-rw-r--r-- | drivers/net/wireless/ath/ath9k/Kconfig | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/net/wireless/ath/ath9k/Kconfig b/drivers/net/wireless/ath/ath9k/Kconfig index 5effb3886631..a84bb9b6573f 100644 --- a/drivers/net/wireless/ath/ath9k/Kconfig +++ b/drivers/net/wireless/ath/ath9k/Kconfig @@ -22,10 +22,10 @@ config ATH9K tristate "Atheros 802.11n wireless cards support" depends on MAC80211 && HAS_DMA select ATH9K_HW - select MAC80211_LEDS - select LEDS_CLASS - select NEW_LEDS select ATH9K_COMMON + imply NEW_LEDS + imply LEDS_CLASS + imply MAC80211_LEDS help This module adds support for wireless adapters based on Atheros IEEE 802.11n AR5008, AR9001 and AR9002 family |