1obj-$(CONFIG_ATH10K) += ath10k_core.o 2ath10k_core-y += mac.o \ 3 debug.o \ 4 core.o \ 5 htc.o \ 6 htt.o \ 7 htt_rx.o \ 8 htt_tx.o \ 9 txrx.o \ 10 wmi.o \ 11 wmi-tlv.o \ 12 bmi.o \ 13 hw.o 14 15ath10k_core-$(CONFIG_ATH10K_DEBUGFS) += spectral.o 16ath10k_core-$(CONFIG_NL80211_TESTMODE) += testmode.o 17ath10k_core-$(CONFIG_ATH10K_TRACING) += trace.o 18ath10k_core-$(CONFIG_THERMAL) += thermal.o 19ath10k_core-$(CONFIG_MAC80211_DEBUGFS) += debugfs_sta.o 20 21obj-$(CONFIG_ATH10K_PCI) += ath10k_pci.o 22ath10k_pci-y += pci.o \ 23 ce.o 24 25# for tracing framework to find trace.h 26CFLAGS_trace.o := -I$(src) 27