1ath9k-y += beacon.o \ 2 gpio.o \ 3 init.o \ 4 main.o \ 5 recv.o \ 6 xmit.o \ 7 link.o \ 8 antenna.o 9 10ath9k-$(CONFIG_ATH9K_BTCOEX_SUPPORT) += mci.o 11ath9k-$(CONFIG_ATH9K_LEGACY_RATE_CONTROL) += rc.o 12ath9k-$(CONFIG_ATH9K_PCI) += pci.o 13ath9k-$(CONFIG_ATH9K_AHB) += ahb.o 14ath9k-$(CONFIG_ATH9K_DEBUGFS) += debug.o 15ath9k-$(CONFIG_ATH9K_DFS_DEBUGFS) += dfs_debug.o 16ath9k-$(CONFIG_ATH9K_DFS_CERTIFIED) += dfs.o 17ath9k-$(CONFIG_ATH9K_TX99) += tx99.o 18 19obj-$(CONFIG_ATH9K) += ath9k.o 20 21ath9k_hw-y:= \ 22 ar9002_hw.o \ 23 ar9003_hw.o \ 24 hw.o \ 25 ar9003_phy.o \ 26 ar9002_phy.o \ 27 ar5008_phy.o \ 28 ar9002_calib.o \ 29 ar9003_calib.o \ 30 ar9003_rtt.o \ 31 calib.o \ 32 eeprom.o \ 33 eeprom_def.o \ 34 eeprom_4k.o \ 35 eeprom_9287.o \ 36 ani.o \ 37 mac.o \ 38 ar9002_mac.o \ 39 ar9003_mac.o \ 40 ar9003_eeprom.o \ 41 ar9003_paprd.o 42 43ath9k_hw-$(CONFIG_PM_SLEEP) += ar9003_wow.o 44 45ath9k_hw-$(CONFIG_ATH9K_BTCOEX_SUPPORT) += btcoex.o \ 46 ar9003_mci.o 47obj-$(CONFIG_ATH9K_HW) += ath9k_hw.o 48 49obj-$(CONFIG_ATH9K_COMMON) += ath9k_common.o 50ath9k_common-y:= common.o 51 52ath9k_htc-y += htc_hst.o \ 53 hif_usb.o \ 54 wmi.o \ 55 htc_drv_txrx.o \ 56 htc_drv_main.o \ 57 htc_drv_beacon.o \ 58 htc_drv_init.o \ 59 htc_drv_gpio.o 60 61ath9k_htc-$(CONFIG_ATH9K_HTC_DEBUGFS) += htc_drv_debug.o 62 63obj-$(CONFIG_ATH9K_HTC) += ath9k_htc.o 64