diff options
author | Holger Schurig <hs4233@mail.mn-solutions.de> | 2009-10-06 10:31:20 -0400 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2009-10-07 16:39:46 -0400 |
commit | 0465af8e03bdc6cd0b49dc5548671387a8674b69 (patch) | |
tree | d4f72fb7d8fdf6c7534775225ffd32a1c5aa4ae4 /drivers/net/wireless/libertas | |
parent | baee1f3caa5a771880144358dd07d32e09ba4dcf (diff) |
libertas: separate libertas' Kconfig in it's own file
Also sorts all "source" lines in the wireless/Kconfig.
Signed-off-by: Holger Schurig <hs4233@mail.mn-solutions.de>
Acked-by: Dan Williams <dcbw@redhat.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers/net/wireless/libertas')
-rw-r--r-- | drivers/net/wireless/libertas/Kconfig | 40 | ||||
-rw-r--r-- | drivers/net/wireless/libertas/Makefile | 14 |
2 files changed, 52 insertions, 2 deletions
diff --git a/drivers/net/wireless/libertas/Kconfig b/drivers/net/wireless/libertas/Kconfig new file mode 100644 index 000000000000..3e6c922c2f44 --- /dev/null +++ b/drivers/net/wireless/libertas/Kconfig | |||
@@ -0,0 +1,40 @@ | |||
1 | config LIBERTAS | ||
2 | tristate "Marvell 8xxx Libertas WLAN driver support" | ||
3 | depends on WLAN_80211 | ||
4 | select WIRELESS_EXT | ||
5 | select WEXT_SPY | ||
6 | select LIB80211 | ||
7 | select FW_LOADER | ||
8 | ---help--- | ||
9 | A library for Marvell Libertas 8xxx devices. | ||
10 | |||
11 | config LIBERTAS_USB | ||
12 | tristate "Marvell Libertas 8388 USB 802.11b/g cards" | ||
13 | depends on LIBERTAS && USB | ||
14 | ---help--- | ||
15 | A driver for Marvell Libertas 8388 USB devices. | ||
16 | |||
17 | config LIBERTAS_CS | ||
18 | tristate "Marvell Libertas 8385 CompactFlash 802.11b/g cards" | ||
19 | depends on LIBERTAS && PCMCIA | ||
20 | select FW_LOADER | ||
21 | ---help--- | ||
22 | A driver for Marvell Libertas 8385 CompactFlash devices. | ||
23 | |||
24 | config LIBERTAS_SDIO | ||
25 | tristate "Marvell Libertas 8385/8686/8688 SDIO 802.11b/g cards" | ||
26 | depends on LIBERTAS && MMC | ||
27 | ---help--- | ||
28 | A driver for Marvell Libertas 8385/8686/8688 SDIO devices. | ||
29 | |||
30 | config LIBERTAS_SPI | ||
31 | tristate "Marvell Libertas 8686 SPI 802.11b/g cards" | ||
32 | depends on LIBERTAS && SPI | ||
33 | ---help--- | ||
34 | A driver for Marvell Libertas 8686 SPI devices. | ||
35 | |||
36 | config LIBERTAS_DEBUG | ||
37 | bool "Enable full debugging output in the Libertas module." | ||
38 | depends on LIBERTAS | ||
39 | ---help--- | ||
40 | Debugging support. | ||
diff --git a/drivers/net/wireless/libertas/Makefile b/drivers/net/wireless/libertas/Makefile index 0b6918584503..2f63940fb7f6 100644 --- a/drivers/net/wireless/libertas/Makefile +++ b/drivers/net/wireless/libertas/Makefile | |||
@@ -1,5 +1,15 @@ | |||
1 | libertas-objs := main.o wext.o rx.o tx.o cmd.o cmdresp.o scan.o 11d.o \ | 1 | libertas-y += 11d.o |
2 | debugfs.o persistcfg.o ethtool.o assoc.o | 2 | libertas-y += assoc.o |
3 | libertas-y += cmd.o | ||
4 | libertas-y += cmdresp.o | ||
5 | libertas-y += debugfs.o | ||
6 | libertas-y += ethtool.o | ||
7 | libertas-y += main.o | ||
8 | libertas-y += persistcfg.o | ||
9 | libertas-y += rx.o | ||
10 | libertas-y += scan.o | ||
11 | libertas-y += tx.o | ||
12 | libertas-y += wext.o | ||
3 | 13 | ||
4 | usb8xxx-objs += if_usb.o | 14 | usb8xxx-objs += if_usb.o |
5 | libertas_cs-objs += if_cs.o | 15 | libertas_cs-objs += if_cs.o |