1# SPDX-License-Identifier: BSD-3-Clause-Clear 2obj-$(CONFIG_ATH11K) += ath11k.o 3ath11k-y += core.o \ 4 hal.o \ 5 hal_tx.o \ 6 hal_rx.o \ 7 ahb.o \ 8 wmi.o \ 9 mac.o \ 10 reg.o \ 11 htc.o \ 12 qmi.o \ 13 dp.o \ 14 dp_tx.o \ 15 dp_rx.o \ 16 debug.o \ 17 ce.o \ 18 peer.o \ 19 dbring.o 20 21ath11k-$(CONFIG_ATH11K_DEBUGFS) += debug_htt_stats.o debugfs_sta.o 22ath11k-$(CONFIG_NL80211_TESTMODE) += testmode.o 23ath11k-$(CONFIG_ATH11K_TRACING) += trace.o 24ath11k-$(CONFIG_THERMAL) += thermal.o 25ath11k-$(CONFIG_ATH11K_SPECTRAL) += spectral.o 26 27# for tracing framework to find trace.h 28CFLAGS_trace.o := -I$(src) 29