diff options
author | Bob Copeland <me@bobcopeland.com> | 2009-08-07 06:33:34 -0400 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2009-08-14 09:13:37 -0400 |
commit | af8c78ebbf2a15ecf9b2b6b7b051b0d4c3ba1163 (patch) | |
tree | 8f791d64357218b6ac6a97758b0eb3efb7358fcc /drivers/net/wireless/wl12xx/Kconfig | |
parent | 8e639c0673a9b676bb7c6bd4e50f9003bdda423e (diff) |
wl1251: split spi interface into separate module
This creates a module called wl1251_spi.ko which contains just the
SPI-specific code. The core remains in the module wl1251.ko.
Signed-off-by: Bob Copeland <me@bobcopeland.com>
Signed-off-by: Kalle Valo <kalle.valo@nokia.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers/net/wireless/wl12xx/Kconfig')
-rw-r--r-- | drivers/net/wireless/wl12xx/Kconfig | 17 |
1 files changed, 14 insertions, 3 deletions
diff --git a/drivers/net/wireless/wl12xx/Kconfig b/drivers/net/wireless/wl12xx/Kconfig index af31eabad18b..f8cb8b864ad2 100644 --- a/drivers/net/wireless/wl12xx/Kconfig +++ b/drivers/net/wireless/wl12xx/Kconfig | |||
@@ -7,15 +7,26 @@ menuconfig WL12XX | |||
7 | 7 | ||
8 | config WL1251 | 8 | config WL1251 |
9 | tristate "TI wl1251 support" | 9 | tristate "TI wl1251 support" |
10 | depends on WL12XX && SPI_MASTER && GENERIC_HARDIRQS | 10 | depends on WL12XX && GENERIC_HARDIRQS |
11 | select FW_LOADER | 11 | select FW_LOADER |
12 | select CRC7 | 12 | select CRC7 |
13 | ---help--- | 13 | ---help--- |
14 | This module adds support for wireless adapters based on | 14 | This module adds support for wireless adapters based on |
15 | TI wl1251 chipset. | 15 | TI wl1251 chipset. |
16 | 16 | ||
17 | If you choose to build a module, it'll be called wl1251. Say N if | 17 | If you choose to build a module, it'll be called wl1251. Say |
18 | unsure. | 18 | N if unsure. |
19 | |||
20 | config WL1251_SPI | ||
21 | tristate "TI wl1251 SPI support" | ||
22 | depends on WL1251 && SPI_MASTER | ||
23 | ---help--- | ||
24 | This module adds support for the SPI interface of adapters using | ||
25 | TI wl1251 chipset. Select this if your platform is using | ||
26 | the SPI bus. | ||
27 | |||
28 | If you choose to build a module, it'll be called wl1251_spi. | ||
29 | Say N if unsure. | ||
19 | 30 | ||
20 | config WL1271 | 31 | config WL1271 |
21 | tristate "TI wl1271 support" | 32 | tristate "TI wl1271 support" |