diff options
author | Gabor Juhos <juhosg@openwrt.org> | 2009-01-14 20:17:06 +0100 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2009-01-29 16:00:31 -0500 |
commit | 6baff7f9a6c571dcd9a59820e3c094f7490cb0fd (patch) | |
tree | 17345f71c943ec94cdd16826c7f5be8bc03a416d /drivers/net/wireless/ath9k/Makefile | |
parent | 39c3c2f2de6bccf698bfb5b9c4f56ddf99de0dbc (diff) |
ath9k: move PCI code into separate file
Now that we have converted all bus specific routines to replaceable, we
can move the PCI specific codes into a separate file.
Changes-licensed-under: ISC
Signed-off-by: Gabor Juhos <juhosg@openwrt.org>
Signed-off-by: Imre Kaloz <kaloz@openwrt.org>
Tested-by: Pavel Roskin <proski@gnu.org>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers/net/wireless/ath9k/Makefile')
-rw-r--r-- | drivers/net/wireless/ath9k/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/net/wireless/ath9k/Makefile b/drivers/net/wireless/ath9k/Makefile index 1209d14613a..af3f39bbddd 100644 --- a/drivers/net/wireless/ath9k/Makefile +++ b/drivers/net/wireless/ath9k/Makefile @@ -11,6 +11,7 @@ ath9k-y += hw.o \ xmit.o \ rc.o +ath9k-$(CONFIG_PCI) += pci.o ath9k-$(CONFIG_ATH9K_DEBUG) += debug.o obj-$(CONFIG_ATH9K) += ath9k.o |