diff options
author | Luis R. Rodriguez <lrodriguez@atheros.com> | 2009-09-24 03:07:00 (GMT) |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2009-10-07 20:39:41 (GMT) |
commit | 7322fd19295fa7f7d954a19a5f0b77687d441846 (patch) | |
tree | b01daf52514d90ea2941a148059afd97696b614e /drivers/net/wireless/ath/Makefile | |
parent | 475a6e4d3907d6af412d081a9eab3b1e8a24afd1 (diff) | |
download | linux-7322fd19295fa7f7d954a19a5f0b77687d441846.tar.xz |
ath9k: move hw code to its own module
hw code for Atheros 802.11n hardware is commmon between
different chipsets. This moves this code into a separate
module, the next expected user of this code will be
the ath9k_htc module.
The ath9k/ dir is now selected by ATH9K_HW, an option which
gets selected by either ath9k or ath9k_htc, but remains
invisible for user menuconfig configuration. If either
ath9k or ath9k_htc will be compiled into the kernel
ath9k_hw will also be compiled in.
Cc: Jouni Malinen <jouni.malinen@atheros.com>
Signed-off-by: Luis R. Rodriguez <lrodriguez@atheros.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers/net/wireless/ath/Makefile')
-rw-r--r-- | drivers/net/wireless/ath/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/wireless/ath/Makefile b/drivers/net/wireless/ath/Makefile index 5c8e6b2..8113a50 100644 --- a/drivers/net/wireless/ath/Makefile +++ b/drivers/net/wireless/ath/Makefile @@ -1,5 +1,5 @@ obj-$(CONFIG_ATH5K) += ath5k/ -obj-$(CONFIG_ATH9K) += ath9k/ +obj-$(CONFIG_ATH9K_HW) += ath9k/ obj-$(CONFIG_AR9170_USB) += ar9170/ obj-$(CONFIG_ATH_COMMON) += ath.o |