blob: 8fcd586d1c3980c413c8499cb3aefd518f507f69 [file] [log] [blame]
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -04001ath9k-y += beacon.o \
Sujith0fca65c2010-01-08 10:36:00 +05302 gpio.o \
Sujith55624202010-01-08 10:36:02 +05303 init.o \
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07004 main.o \
5 recv.o \
Sujith Manoharanef1b6cd2012-06-04 20:23:37 +05306 xmit.o \
Sujith Manoharan8da07832012-06-04 20:23:49 +05307 link.o \
8 antenna.o
Luis R. Rodriguezf078f202008-08-04 00:16:41 -07009
Sujith Manoharan4daa7762012-02-22 12:40:44 +053010ath9k-$(CONFIG_ATH9K_BTCOEX_SUPPORT) += mci.o
Gabor Juhos8e26a032011-04-12 18:23:16 +020011ath9k-$(CONFIG_ATH9K_PCI) += pci.o
12ath9k-$(CONFIG_ATH9K_AHB) += ahb.o
Zefir Kurtisi29942bc2011-12-14 20:16:34 -080013ath9k-$(CONFIG_ATH9K_DFS_DEBUGFS) += dfs_debug.o
Sujith Manoharanef6b19e2013-10-24 12:04:39 +053014ath9k-$(CONFIG_ATH9K_DFS_CERTIFIED) += dfs.o
Sujith Manoharanef6b19e2013-10-24 12:04:39 +053015ath9k-$(CONFIG_ATH9K_TX99) += tx99.o
Sujith Manoharane60001e2013-10-28 12:22:04 +053016ath9k-$(CONFIG_ATH9K_WOW) += wow.o
Sujith88b126a2008-11-28 22:19:02 +053017
Sujith Manoharanf65c0822013-12-18 09:53:18 +053018ath9k-$(CONFIG_ATH9K_DEBUGFS) += debug.o \
19 spectral.o
20
Sujith Manoharan1cdbaf02014-01-13 07:29:27 +053021ath9k-$(CONFIG_ATH9K_STATION_STATISTICS) += debug_sta.o
22
Luis R. Rodriguezf078f202008-08-04 00:16:41 -070023obj-$(CONFIG_ATH9K) += ath9k.o
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -040024
Luis R. Rodriguezb3950e62010-04-15 17:39:03 -040025ath9k_hw-y:= \
26 ar9002_hw.o \
27 ar9003_hw.o \
28 hw.o \
Luis R. Rodriguez8525f282010-04-15 17:38:19 -040029 ar9003_phy.o \
Luis R. Rodriguez8fe65362010-04-15 17:38:14 -040030 ar9002_phy.o \
31 ar5008_phy.o \
Luis R. Rodriguez795f5e22010-04-15 17:39:00 -040032 ar9002_calib.o \
33 ar9003_calib.o \
Rajkumar Manoharan324c74a2011-10-13 11:00:41 +053034 ar9003_rtt.o \
Luis R. Rodriguez795f5e22010-04-15 17:39:00 -040035 calib.o \
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -040036 eeprom.o \
37 eeprom_def.o \
38 eeprom_4k.o \
39 eeprom_9287.o \
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -040040 ani.o \
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -040041 mac.o \
Luis R. Rodriguezb622a722010-04-15 17:39:28 -040042 ar9002_mac.o \
Senthil Balasubramanian15c9ee72010-04-15 17:39:14 -040043 ar9003_mac.o \
Felix Fietkau717f6be2010-06-12 00:34:00 -040044 ar9003_eeprom.o \
Sujith Manoharandbccdd12012-02-22 17:55:47 +053045 ar9003_paprd.o
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -040046
Sujith Manoharane60001e2013-10-28 12:22:04 +053047ath9k_hw-$(CONFIG_ATH9K_WOW) += ar9003_wow.o
Sujith Manoharan9c9cb102013-10-28 11:47:43 +053048
Sujith Manoharandbccdd12012-02-22 17:55:47 +053049ath9k_hw-$(CONFIG_ATH9K_BTCOEX_SUPPORT) += btcoex.o \
50 ar9003_mci.o
Luis R. Rodriguez7322fd12009-09-23 23:07:00 -040051obj-$(CONFIG_ATH9K_HW) += ath9k_hw.o
Luis R. Rodriguezdb86f072009-11-05 08:44:39 -080052
53obj-$(CONFIG_ATH9K_COMMON) += ath9k_common.o
Oleksij Rempel13f71052014-02-25 14:48:50 +010054ath9k_common-y:= common.o \
Oleksij Rempelcbbdf2a2014-03-01 21:15:56 +010055 common-init.o \
Oleksij Rempelf2c3c952014-05-11 10:04:31 +020056 common-beacon.o \
57 common-debug.o
Sujithfb9987d2010-03-17 14:25:25 +053058
59ath9k_htc-y += htc_hst.o \
60 hif_usb.o \
61 wmi.o \
62 htc_drv_txrx.o \
63 htc_drv_main.o \
64 htc_drv_beacon.o \
Vivek Natarajan21cb9872010-08-18 19:57:49 +053065 htc_drv_init.o \
66 htc_drv_gpio.o
Sujithfb9987d2010-03-17 14:25:25 +053067
Sujith Manoharan8e42e4b2011-04-13 11:24:00 +053068ath9k_htc-$(CONFIG_ATH9K_HTC_DEBUGFS) += htc_drv_debug.o
69
Sujithfb9987d2010-03-17 14:25:25 +053070obj-$(CONFIG_ATH9K_HTC) += ath9k_htc.o