diff options
author | Kalle Valo <kalle.valo@nokia.com> | 2009-06-12 07:17:06 -0400 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2009-07-10 14:57:48 -0400 |
commit | c5ce901b3fdb2312f896f138ac864a7ef363c02d (patch) | |
tree | 031ecadaf6158edacc9a5379ee66f30d39b605d4 /drivers/net/wireless/wl12xx | |
parent | e6f0b5c2993609c576a0c45e86f7e5b6dd0ae421 (diff) |
wl12xx: rename driver to wl1251
Rename driver to wl1251.ko in preparation for wl1271 driver.
Signed-off-by: Kalle Valo <kalle.valo@nokia.com>
Reviewed-by: Vidhya Govindan <vidhya.govindan@nokia.com>
Reviewed-by: Luciano Coelho <luciano.coelho@nokia.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers/net/wireless/wl12xx')
-rw-r--r-- | drivers/net/wireless/wl12xx/Kconfig | 17 | ||||
-rw-r--r-- | drivers/net/wireless/wl12xx/Makefile | 4 |
2 files changed, 14 insertions, 7 deletions
diff --git a/drivers/net/wireless/wl12xx/Kconfig b/drivers/net/wireless/wl12xx/Kconfig index a82c4cd436d8..82a0f97975de 100644 --- a/drivers/net/wireless/wl12xx/Kconfig +++ b/drivers/net/wireless/wl12xx/Kconfig | |||
@@ -1,11 +1,18 @@ | |||
1 | config WL12XX | 1 | menuconfig WL12XX |
2 | tristate "TI wl1251/wl1271 support" | 2 | boolean "TI wl12xx driver support" |
3 | depends on MAC80211 && WLAN_80211 && SPI_MASTER && GENERIC_HARDIRQS && EXPERIMENTAL | 3 | depends on MAC80211 && WLAN_80211 && EXPERIMENTAL |
4 | ---help--- | ||
5 | This will enable TI wl12xx driver support. The drivers make | ||
6 | use of the mac80211 stack. | ||
7 | |||
8 | config WL1251 | ||
9 | tristate "TI wl1251 support" | ||
10 | depends on WL12XX && SPI_MASTER && GENERIC_HARDIRQS | ||
4 | select FW_LOADER | 11 | select FW_LOADER |
5 | select CRC7 | 12 | select CRC7 |
6 | ---help--- | 13 | ---help--- |
7 | This module adds support for wireless adapters based on | 14 | This module adds support for wireless adapters based on |
8 | TI wl1251/wl1271 chipsets. | 15 | TI wl1251 chipset. |
9 | 16 | ||
10 | If you choose to build a module, it'll be called wl12xx. Say N if | 17 | If you choose to build a module, it'll be called wl1251. Say N if |
11 | unsure. | 18 | unsure. |
diff --git a/drivers/net/wireless/wl12xx/Makefile b/drivers/net/wireless/wl12xx/Makefile index bb2f2524a0bc..f94970c1d80d 100644 --- a/drivers/net/wireless/wl12xx/Makefile +++ b/drivers/net/wireless/wl12xx/Makefile | |||
@@ -1,4 +1,4 @@ | |||
1 | wl12xx-objs = main.o spi.o event.o wl1251_tx.o rx.o \ | 1 | wl1251-objs = main.o spi.o event.o wl1251_tx.o rx.o \ |
2 | ps.o cmd.o acx.o boot.o init.o wl1251_ops.o \ | 2 | ps.o cmd.o acx.o boot.o init.o wl1251_ops.o \ |
3 | debugfs.o | 3 | debugfs.o |
4 | obj-$(CONFIG_WL12XX) += wl12xx.o | 4 | obj-$(CONFIG_WL1251) += wl1251.o |