Makefile (b92172661e63c1f3528015bb378954c1a9e5bf4a) Makefile (67dc74f15f147b9f88702de2952d2951e3e000ec)
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
18
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
18
19ath9k-$(CONFIG_ATH9K_DEBUGFS) += debug.o \
20 spectral.o
19ath9k-$(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 \

--- 25 unchanged lines hidden (view full) ---

54ath9k_hw-$(CONFIG_ATH9K_DYNACK) += dynack.o
55
56obj-$(CONFIG_ATH9K_HW) += ath9k_hw.o
57
58obj-$(CONFIG_ATH9K_COMMON) += ath9k_common.o
59ath9k_common-y:= common.o \
60 common-init.o \
61 common-beacon.o \
20
21ath9k-$(CONFIG_ATH9K_STATION_STATISTICS) += debug_sta.o
22
23obj-$(CONFIG_ATH9K) += ath9k.o
24
25ath9k_hw-y:= \
26 ar9002_hw.o \
27 ar9003_hw.o \

--- 25 unchanged lines hidden (view full) ---

53ath9k_hw-$(CONFIG_ATH9K_DYNACK) += dynack.o
54
55obj-$(CONFIG_ATH9K_HW) += ath9k_hw.o
56
57obj-$(CONFIG_ATH9K_COMMON) += ath9k_common.o
58ath9k_common-y:= common.o \
59 common-init.o \
60 common-beacon.o \
62 common-debug.o
61 common-debug.o \
62 common-spectral.o
63
64ath9k_htc-y += htc_hst.o \
65 hif_usb.o \
66 wmi.o \
67 htc_drv_txrx.o \
68 htc_drv_main.o \
69 htc_drv_beacon.o \
70 htc_drv_init.o \
71 htc_drv_gpio.o
72
73ath9k_htc-$(CONFIG_ATH9K_HTC_DEBUGFS) += htc_drv_debug.o
74
75obj-$(CONFIG_ATH9K_HTC) += ath9k_htc.o
63
64ath9k_htc-y += htc_hst.o \
65 hif_usb.o \
66 wmi.o \
67 htc_drv_txrx.o \
68 htc_drv_main.o \
69 htc_drv_beacon.o \
70 htc_drv_init.o \
71 htc_drv_gpio.o
72
73ath9k_htc-$(CONFIG_ATH9K_HTC_DEBUGFS) += htc_drv_debug.o
74
75obj-$(CONFIG_ATH9K_HTC) += ath9k_htc.o