aboutsummaryrefslogtreecommitdiffstats
path: root/net
diff options
context:
space:
mode:
authorLuca Tettamanti <kronos.it@gmail.com>2008-04-27 15:34:55 -0700
committerDavid S. Miller <davem@davemloft.net>2008-04-27 15:34:55 -0700
commitbd8fd21dfddf51299d782f598cb776b15b7d64cc (patch)
treea9728408abb166871acde7caaac3945e687f1782 /net
parenttcp: Fix slab corruption with ipv6 and tcp6fuzz (diff)
downloadlinux-dev-bd8fd21dfddf51299d782f598cb776b15b7d64cc.tar.xz
linux-dev-bd8fd21dfddf51299d782f598cb776b15b7d64cc.zip
wireless: Fix compile error with wifi & leds
Fix build error caused by commit e82404ad612ebabc65d15c3d59b971cb35c3ff36 ("iwlwifi: Select LEDS_CLASS.") from David Miller: Since MAC80211_LEDS is selected by wireless drivers it must select its own dependencies otherwise a build error may occur (kbuild will select the symbol regardless of "depends" constraints). Signed-off-By: Luca Tettamanti <kronos.it@gmail.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net')
-rw-r--r--net/mac80211/Kconfig4
1 files changed, 3 insertions, 1 deletions
diff --git a/net/mac80211/Kconfig b/net/mac80211/Kconfig
index 520a5180a4f6..a24b459dd45a 100644
--- a/net/mac80211/Kconfig
+++ b/net/mac80211/Kconfig
@@ -73,7 +73,9 @@ config MAC80211_MESH
config MAC80211_LEDS
bool "Enable LED triggers"
- depends on MAC80211 && LEDS_TRIGGERS
+ depends on MAC80211
+ select NEW_LEDS
+ select LEDS_TRIGGERS
---help---
This option enables a few LED triggers for different
packet receive/transmit events.