From c3e3524fa7e3531f4925ee8c2f9fad3f023e2ef2 Mon Sep 17 00:00:00 2001 From: "Luis R. Rodriguez" Date: Mon, 4 Feb 2008 09:56:32 -0500 Subject: [PATCH] --- yaml --- r: 89875 b: refs/heads/master c: e9ddc0f25ce524d257e6cf779e495f567ed7678f h: refs/heads/master i: 89873: 1d9f02078446e6966b996e2cc3de6694ebfe7bc5 89871: e6626c4278014a4ee82c4fe95bc40a56dd2ff3fa v: v3 --- [refs] | 2 +- trunk/drivers/net/wireless/Kconfig | 18 +----------------- trunk/drivers/net/wireless/ath5k/Kconfig | 16 ++++++++++++++++ trunk/drivers/net/wireless/ath5k/Makefile | 8 ++++++-- 4 files changed, 24 insertions(+), 20 deletions(-) create mode 100644 trunk/drivers/net/wireless/ath5k/Kconfig diff --git a/[refs] b/[refs] index dba1edfe1633..3d78c6a5825c 100644 --- a/[refs] +++ b/[refs] @@ -1,2 +1,2 @@ --- -refs/heads/master: a3f4b914a03a11f3ccc98243b20a647bb8f31691 +refs/heads/master: e9ddc0f25ce524d257e6cf779e495f567ed7678f diff --git a/trunk/drivers/net/wireless/Kconfig b/trunk/drivers/net/wireless/Kconfig index 714a6ca30ad2..cfedbda81e3f 100644 --- a/trunk/drivers/net/wireless/Kconfig +++ b/trunk/drivers/net/wireless/Kconfig @@ -732,23 +732,7 @@ config P54_PCI If you choose to build a module, it'll be called p54pci. -config ATH5K - tristate "Atheros 5xxx wireless cards support" - depends on PCI && MAC80211 && WLAN_80211 && EXPERIMENTAL - ---help--- - This module adds support for wireless adapters based on - Atheros 5xxx chipset. - - Currently the following chip versions are supported: - - MAC: AR5211 AR5212 - PHY: RF5111/2111 RF5112/2112 RF5413/2413 - - This driver uses the kernel's mac80211 subsystem. - - If you choose to build a module, it'll be called ath5k. Say M if - unsure. - +source "drivers/net/wireless/ath5k/Kconfig" source "drivers/net/wireless/iwlwifi/Kconfig" source "drivers/net/wireless/hostap/Kconfig" source "drivers/net/wireless/bcm43xx/Kconfig" diff --git a/trunk/drivers/net/wireless/ath5k/Kconfig b/trunk/drivers/net/wireless/ath5k/Kconfig new file mode 100644 index 000000000000..af1b6b8c991a --- /dev/null +++ b/trunk/drivers/net/wireless/ath5k/Kconfig @@ -0,0 +1,16 @@ +config ATH5K + tristate "Atheros 5xxx wireless cards support" + depends on PCI && MAC80211 && WLAN_80211 && EXPERIMENTAL + ---help--- + This module adds support for wireless adapters based on + Atheros 5xxx chipset. + + Currently the following chip versions are supported: + + MAC: AR5211 AR5212 + PHY: RF5111/2111 RF5112/2112 RF5413/2413 + + This driver uses the kernel's mac80211 subsystem. + + If you choose to build a module, it'll be called ath5k. Say M if + unsure. diff --git a/trunk/drivers/net/wireless/ath5k/Makefile b/trunk/drivers/net/wireless/ath5k/Makefile index ada1095d4ef1..0f14b00f648e 100644 --- a/trunk/drivers/net/wireless/ath5k/Makefile +++ b/trunk/drivers/net/wireless/ath5k/Makefile @@ -1,2 +1,6 @@ -ath5k-objs = base.o hw.o initvals.o phy.o debug.o -obj-$(CONFIG_ATH5K) += ath5k.o +ath5k-y += base.o +ath5k-y += hw.o +ath5k-y += initvals.o +ath5k-y += phy.o +ath5k-y += debug.o +obj-$(CONFIG_ATH5K) += ath5k.o