rt2x00: Make rt2x00 LEDS invisible config option
[pandora-kernel.git] / drivers / net / wireless / rt2x00 / Kconfig
1 config RT2X00
2         tristate "Ralink driver support"
3         depends on MAC80211 && WLAN_80211 && EXPERIMENTAL
4         ---help---
5           This will enable the experimental support for the Ralink drivers,
6           developed in the rt2x00 project <http://rt2x00.serialmonkey.com>.
7
8           These drivers make use of the mac80211 stack.
9
10           When building one of the individual drivers, the rt2x00 library
11           will also be created. That library (when the driver is built as
12           a module) will be called "rt2x00lib.ko".
13
14           Additionally PCI and USB libraries will also be build depending
15           on the types of drivers being selected, these libraries will be
16           called "rt2x00pci.ko" and "rt2x00usb.ko".
17
18 if RT2X00
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
54         tristate "Ralink rt2400 (PCI/PCMCIA) support"
55         depends on PCI
56         select RT2X00_LIB_PCI
57         select EEPROM_93CX6
58         ---help---
59           This adds support for rt2400 wireless chipset family.
60           Supported chips: RT2460.
61
62           When compiled as a module, this driver will be called "rt2400pci.ko".
63
64 config RT2500PCI
65         tristate "Ralink rt2500 (PCI/PCMCIA) support"
66         depends on PCI
67         select RT2X00_LIB_PCI
68         select EEPROM_93CX6
69         ---help---
70           This adds support for rt2500 wireless chipset family.
71           Supported chips: RT2560.
72
73           When compiled as a module, this driver will be called "rt2500pci.ko".
74
75 config RT61PCI
76         tristate "Ralink rt2501/rt61 (PCI/PCMCIA) support"
77         depends on PCI
78         select RT2X00_LIB_PCI
79         select RT2X00_LIB_FIRMWARE
80         select RT2X00_LIB_CRYPTO
81         select CRC_ITU_T
82         select EEPROM_93CX6
83         ---help---
84           This adds support for rt2501 wireless chipset family.
85           Supported chips: RT2561, RT2561S & RT2661.
86
87           When compiled as a module, this driver will be called "rt61pci.ko".
88
89 config RT2500USB
90         tristate "Ralink rt2500 (USB) support"
91         depends on USB
92         select RT2X00_LIB_USB
93         ---help---
94           This adds support for rt2500 wireless chipset family.
95           Supported chips: RT2571 & RT2572.
96
97           When compiled as a module, this driver will be called "rt2500usb.ko".
98
99 config RT73USB
100         tristate "Ralink rt2501/rt73 (USB) support"
101         depends on USB
102         select RT2X00_LIB_USB
103         select RT2X00_LIB_FIRMWARE
104         select RT2X00_LIB_CRYPTO
105         select CRC_ITU_T
106         ---help---
107           This adds support for rt2501 wireless chipset family.
108           Supported chips: RT2571W, RT2573 & RT2671.
109
110           When compiled as a module, this driver will be called "rt73usb.ko".
111
112 config RT2X00_LIB_DEBUGFS
113         bool "Ralink debugfs support"
114         depends on RT2X00_LIB && MAC80211_DEBUGFS
115         ---help---
116           Enable creation of debugfs files for the rt2x00 drivers.
117           These debugfs files support both reading and writing of the
118           most important register types of the rt2x00 hardware.
119
120 config RT2X00_DEBUG
121         bool "Ralink debug output"
122         depends on RT2X00_LIB
123         ---help---
124           Enable debugging output for all rt2x00 modules
125
126 endif