diff options
author | Gertjan van Wingerde <gwingerde@kpnplanet.nl> | 2008-09-28 09:11:38 -0400 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2008-09-30 14:07:25 -0400 |
commit | 4c99f3e4cfc3190e01c55e72d15a837d9dc41426 (patch) | |
tree | b681c5cd021c50fb5387bf38263a4601bf15b06c /drivers/net/wireless/rt2x00 | |
parent | 55ad175fb65a4a3a7e4d1aa13c460de281b4e8ac (diff) |
rt2x00: Fix build errors due to modularized rfkill or leds and built-in rt2x00.
Fix by disabling rt2x00 rfkill support when rt2x00 is built-in and rfkill has been modularized, and
a similar scheme for the relationship between leds_class and rt2x00..
Also, give a warning to the end-user when rfkill-/leds-support is disabled this way, so that the
end-user has at least some clues on what is going on.
Proper fixing required some general updates of the Kconfig-structure for the rt2x00 driver, whereby
internal configuration symbols had to be moved to after the user-visible configuration symbols.
Signed-off-by: Gertjan van Wingerde <gwingerde@kpnplanet.nl>
Signed-off-by: Ivo van Doorn <IvDoorn@gmail.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers/net/wireless/rt2x00')
-rw-r--r-- | drivers/net/wireless/rt2x00/Kconfig | 69 |
1 files changed, 34 insertions, 35 deletions
diff --git a/drivers/net/wireless/rt2x00/Kconfig b/drivers/net/wireless/rt2x00/Kconfig index b686dc45483e..f839ce044afd 100644 --- a/drivers/net/wireless/rt2x00/Kconfig +++ b/drivers/net/wireless/rt2x00/Kconfig | |||
@@ -1,5 +1,5 @@ | |||
1 | config RT2X00 | 1 | menuconfig RT2X00 |
2 | tristate "Ralink driver support" | 2 | bool "Ralink driver support" |
3 | depends on MAC80211 && WLAN_80211 && EXPERIMENTAL | 3 | depends on MAC80211 && WLAN_80211 && EXPERIMENTAL |
4 | ---help--- | 4 | ---help--- |
5 | This will enable the experimental support for the Ralink drivers, | 5 | This will enable the experimental support for the Ralink drivers, |
@@ -17,39 +17,6 @@ config RT2X00 | |||
17 | 17 | ||
18 | if RT2X00 | 18 | if RT2X00 |
19 | 19 | ||
20 | config RT2X00_LIB | ||
21 | tristate | ||
22 | |||
23 | config RT2X00_LIB_PCI | ||
24 | tristate | ||
25 | select RT2X00_LIB | ||
26 | |||
27 | config RT2X00_LIB_USB | ||
28 | tristate | ||
29 | select RT2X00_LIB | ||
30 | |||
31 | config RT2X00_LIB_FIRMWARE | ||
32 | boolean | ||
33 | depends on RT2X00_LIB | ||
34 | select FW_LOADER | ||
35 | |||
36 | config RT2X00_LIB_CRYPTO | ||
37 | boolean | ||
38 | depends on RT2X00_LIB | ||
39 | |||
40 | config RT2X00_LIB_RFKILL | ||
41 | boolean | ||
42 | depends on RT2X00_LIB | ||
43 | depends on RFKILL | ||
44 | default y | ||
45 | |||
46 | config RT2X00_LIB_LEDS | ||
47 | boolean | ||
48 | depends on RT2X00_LIB | ||
49 | depends on NEW_LEDS | ||
50 | depends on LEDS_CLASS | ||
51 | default y | ||
52 | |||
53 | config RT2400PCI | 20 | config RT2400PCI |
54 | tristate "Ralink rt2400 (PCI/PCMCIA) support" | 21 | tristate "Ralink rt2400 (PCI/PCMCIA) support" |
55 | depends on PCI | 22 | depends on PCI |
@@ -109,6 +76,38 @@ config RT73USB | |||
109 | 76 | ||
110 | When compiled as a module, this driver will be called "rt73usb.ko". | 77 | When compiled as a module, this driver will be called "rt73usb.ko". |
111 | 78 | ||
79 | config RT2X00_LIB_PCI | ||
80 | tristate | ||
81 | select RT2X00_LIB | ||
82 | |||
83 | config RT2X00_LIB_USB | ||
84 | tristate | ||
85 | select RT2X00_LIB | ||
86 | |||
87 | config RT2X00_LIB | ||
88 | tristate | ||
89 | |||
90 | config RT2X00_LIB_FIRMWARE | ||
91 | boolean | ||
92 | select FW_LOADER | ||
93 | |||
94 | config RT2X00_LIB_CRYPTO | ||
95 | boolean | ||
96 | |||
97 | config RT2X00_LIB_RFKILL | ||
98 | boolean | ||
99 | default y if (RT2X00_LIB=y && RFKILL=y) || (RT2X00_LIB=m && RFKILL!=n) | ||
100 | |||
101 | comment "rt2x00 rfkill support disabled due to modularized RFKILL and built-in rt2x00" | ||
102 | depends on RT2X00_LIB=y && RFKILL=m | ||
103 | |||
104 | config RT2X00_LIB_LEDS | ||
105 | boolean | ||
106 | default y if (RT2X00_LIB=y && LEDS_CLASS=y) || (RT2X00_LIB=m && LEDS_CLASS!=n) | ||
107 | |||
108 | comment "rt2x00 leds support disabled due to modularized LEDS_CLASS and built-in rt2x00" | ||
109 | depends on RT2X00_LIB=y && LEDS_CLASS=m | ||
110 | |||
112 | config RT2X00_LIB_DEBUGFS | 111 | config RT2X00_LIB_DEBUGFS |
113 | bool "Ralink debugfs support" | 112 | bool "Ralink debugfs support" |
114 | depends on RT2X00_LIB && MAC80211_DEBUGFS | 113 | depends on RT2X00_LIB && MAC80211_DEBUGFS |