diff options
author | Luis R. Rodriguez <lrodriguez@atheros.com> | 2009-09-14 02:39:31 -0400 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2009-10-07 16:39:30 -0400 |
commit | cfe8cba982cda73d4970dab712411bebdcc3b9cd (patch) | |
tree | 6cd713ffb4c9ab83d699d73d3371ae48f6336c96 /drivers/net/wireless/ath/ath9k/Makefile | |
parent | 9680e8a391078a2bfa099b2c59542a6916a023ed (diff) |
ath9k: clarify what hw code is and remove ath9k.h from a few files
hw code will be shared between ath9k and ath9k_htc.
Just a few more files are left to clean up, mark them as well.
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/ath9k/Makefile')
-rw-r--r-- | drivers/net/wireless/ath/ath9k/Makefile | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/drivers/net/wireless/ath/ath9k/Makefile b/drivers/net/wireless/ath/ath9k/Makefile index ff2c9a26c10c..f85dc8235774 100644 --- a/drivers/net/wireless/ath/ath9k/Makefile +++ b/drivers/net/wireless/ath/ath9k/Makefile | |||
@@ -1,19 +1,23 @@ | |||
1 | ath9k-y += hw.o \ | 1 | ATH9K_HW_FIX += eeprom.o \ |
2 | eeprom.o \ | 2 | mac.o \ |
3 | |||
4 | ATH9K_HW += hw.o \ | ||
3 | eeprom_def.o \ | 5 | eeprom_def.o \ |
4 | eeprom_4k.o \ | 6 | eeprom_4k.o \ |
5 | eeprom_9287.o \ | 7 | eeprom_9287.o \ |
6 | mac.o \ | ||
7 | calib.o \ | 8 | calib.o \ |
8 | ani.o \ | 9 | ani.o \ |
9 | phy.o \ | 10 | phy.o \ |
11 | btcoex.o | ||
12 | |||
13 | ath9k-y += $(ATH9K_HW) \ | ||
14 | $(ATH9K_HW_FIX) \ | ||
10 | beacon.o \ | 15 | beacon.o \ |
11 | main.o \ | 16 | main.o \ |
12 | recv.o \ | 17 | recv.o \ |
13 | xmit.o \ | 18 | xmit.o \ |
14 | virtual.o \ | 19 | virtual.o \ |
15 | rc.o \ | 20 | rc.o |
16 | btcoex.o | ||
17 | 21 | ||
18 | ath9k-$(CONFIG_PCI) += pci.o | 22 | ath9k-$(CONFIG_PCI) += pci.o |
19 | ath9k-$(CONFIG_ATHEROS_AR71XX) += ahb.o | 23 | ath9k-$(CONFIG_ATHEROS_AR71XX) += ahb.o |