linux/drivers/net/wireless/ath/ath9k/Makefile
<<
>>
Prefs
   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                channel.o
  10
  11ath9k-$(CONFIG_ATH9K_BTCOEX_SUPPORT) += mci.o
  12ath9k-$(CONFIG_ATH9K_PCI) += pci.o
  13ath9k-$(CONFIG_ATH9K_AHB) += ahb.o
  14ath9k-$(CONFIG_ATH9K_DFS_DEBUGFS) += dfs_debug.o
  15ath9k-$(CONFIG_ATH9K_DFS_CERTIFIED) += dfs.o
  16ath9k-$(CONFIG_ATH9K_TX99) += tx99.o
  17ath9k-$(CONFIG_ATH9K_WOW) += wow.o
  18ath9k-$(CONFIG_ATH9K_HWRNG) += rng.o
  19
  20ath9k-$(CONFIG_ATH9K_DEBUGFS) += debug.o
  21
  22ath9k-$(CONFIG_ATH9K_STATION_STATISTICS) += debug_sta.o
  23
  24obj-$(CONFIG_ATH9K) += ath9k.o
  25
  26ath9k_hw-y:=    \
  27                ar9002_hw.o \
  28                ar9003_hw.o \
  29                hw.o \
  30                ar9003_phy.o \
  31                ar9002_phy.o \
  32                ar5008_phy.o \
  33                ar9002_calib.o \
  34                ar9003_calib.o \
  35                calib.o \
  36                eeprom.o \
  37                eeprom_def.o \
  38                eeprom_4k.o \
  39                eeprom_9287.o \
  40                ani.o \
  41                mac.o \
  42                ar9002_mac.o \
  43                ar9003_mac.o \
  44                ar9003_eeprom.o \
  45                ar9003_paprd.o
  46
  47ath9k_hw-$(CONFIG_ATH9K_WOW) += ar9003_wow.o
  48
  49ath9k_hw-$(CONFIG_ATH9K_BTCOEX_SUPPORT) += btcoex.o \
  50                                           ar9003_mci.o \
  51                                           ar9003_aic.o
  52
  53ath9k_hw-$(CONFIG_ATH9K_PCOEM) += ar9003_rtt.o
  54
  55ath9k_hw-$(CONFIG_ATH9K_DYNACK) += dynack.o
  56
  57obj-$(CONFIG_ATH9K_HW) += ath9k_hw.o
  58
  59obj-$(CONFIG_ATH9K_COMMON) += ath9k_common.o
  60ath9k_common-y:=        common.o \
  61                        common-init.o \
  62                        common-beacon.o \
  63
  64ath9k_common-$(CONFIG_ATH9K_COMMON_DEBUG) += common-debug.o \
  65                                             common-spectral.o
  66
  67ath9k_htc-y +=  htc_hst.o \
  68                hif_usb.o \
  69                wmi.o \
  70                htc_drv_txrx.o \
  71                htc_drv_main.o \
  72                htc_drv_beacon.o \
  73                htc_drv_init.o \
  74                htc_drv_gpio.o
  75
  76ath9k_htc-$(CONFIG_ATH9K_HTC_DEBUGFS) += htc_drv_debug.o
  77
  78obj-$(CONFIG_ATH9K_HTC) += ath9k_htc.o
  79