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 20ath11k-$(CONFIG_ATH11K_DEBUGFS) += debug_htt_stats.o debugfs_sta.o 21ath11k-$(CONFIG_NL80211_TESTMODE) += testmode.o 22ath11k-$(CONFIG_ATH11K_TRACING) += trace.o 23 24# for tracing framework to find trace.h 25CFLAGS_trace.o := -I$(src) 26