46 lines · plain
1# SPDX-License-Identifier: ISC2obj-$(CONFIG_ATH10K) += ath10k_core.o3ath10k_core-y += mac.o \4 debug.o \5 core.o \6 htc.o \7 htt.o \8 htt_rx.o \9 htt_tx.o \10 txrx.o \11 wmi.o \12 wmi-tlv.o \13 bmi.o \14 hw.o \15 p2p.o \16 swap.o17 18ath10k_core-$(CONFIG_ATH10K_SPECTRAL) += spectral.o19ath10k_core-$(CONFIG_NL80211_TESTMODE) += testmode.o20ath10k_core-$(CONFIG_ATH10K_TRACING) += trace.o21ath10k_core-$(CONFIG_THERMAL) += thermal.o22ath10k_core-$(CONFIG_ATH10K_LEDS) += leds.o23ath10k_core-$(CONFIG_MAC80211_DEBUGFS) += debugfs_sta.o24ath10k_core-$(CONFIG_PM) += wow.o25ath10k_core-$(CONFIG_DEV_COREDUMP) += coredump.o26ath10k_core-$(CONFIG_ATH10K_CE) += ce.o27 28obj-$(CONFIG_ATH10K_PCI) += ath10k_pci.o29ath10k_pci-y += pci.o30 31ath10k_pci-$(CONFIG_ATH10K_AHB) += ahb.o32 33obj-$(CONFIG_ATH10K_SDIO) += ath10k_sdio.o34ath10k_sdio-y += sdio.o35 36obj-$(CONFIG_ATH10K_USB) += ath10k_usb.o37ath10k_usb-y += usb.o38 39obj-$(CONFIG_ATH10K_SNOC) += ath10k_snoc.o40ath10k_snoc-y += qmi.o \41 qmi_wlfw_v01.o \42 snoc.o43 44# for tracing framework to find trace.h45CFLAGS_trace.o := -I$(src)46