Linux Audio

Check our new training course

Yocto / OpenEmbedded training

Mar 24-27, 2025, special US time zones
Register
Loading...
Note: File does not exist in v3.1.
 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	    wmi.o \
 8	    mac.o \
 9	    reg.o \
10	    htc.o \
11	    qmi.o \
12	    dp.o  \
13	    dp_tx.o \
14	    dp_rx.o \
15	    debug.o \
16	    ce.o \
17	    peer.o \
18	    dbring.o \
19	    hw.o \
20	    pcic.o \
21	    fw.o \
22	    p2p.o
23
24ath11k-$(CONFIG_ATH11K_DEBUGFS) += debugfs.o debugfs_htt_stats.o debugfs_sta.o
25ath11k-$(CONFIG_NL80211_TESTMODE) += testmode.o
26ath11k-$(CONFIG_ATH11K_TRACING) += trace.o
27ath11k-$(CONFIG_THERMAL) += thermal.o
28ath11k-$(CONFIG_ATH11K_SPECTRAL) += spectral.o
29ath11k-$(CONFIG_PM) += wow.o
30
31obj-$(CONFIG_ATH11K_AHB) += ath11k_ahb.o
32ath11k_ahb-y += ahb.o
33
34obj-$(CONFIG_ATH11K_PCI) += ath11k_pci.o
35ath11k_pci-y += mhi.o pci.o
36
37# for tracing framework to find trace.h
38CFLAGS_trace.o := -I$(src)