Makefile (cdd38c5f1ce4398ec58fec95904b75824daab7b5) Makefile (ba9177fcef21fa98406e73c472b5ac2eb4ec5f31)
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 \
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 wow.o
19 hw.o
21
22ath11k-$(CONFIG_ATH11K_DEBUGFS) += debugfs.o debugfs_htt_stats.o debugfs_sta.o
23ath11k-$(CONFIG_NL80211_TESTMODE) += testmode.o
24ath11k-$(CONFIG_ATH11K_TRACING) += trace.o
25ath11k-$(CONFIG_THERMAL) += thermal.o
26ath11k-$(CONFIG_ATH11K_SPECTRAL) += spectral.o
20
21ath11k-$(CONFIG_ATH11K_DEBUGFS) += debugfs.o debugfs_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
26ath11k-$(CONFIG_PM) += wow.o
27
28obj-$(CONFIG_ATH11K_AHB) += ath11k_ahb.o
29ath11k_ahb-y += ahb.o
30
31obj-$(CONFIG_ATH11K_PCI) += ath11k_pci.o
32ath11k_pci-y += mhi.o pci.o
33
34# for tracing framework to find trace.h
35CFLAGS_trace.o := -I$(src)
27
28obj-$(CONFIG_ATH11K_AHB) += ath11k_ahb.o
29ath11k_ahb-y += ahb.o
30
31obj-$(CONFIG_ATH11K_PCI) += ath11k_pci.o
32ath11k_pci-y += mhi.o pci.o
33
34# for tracing framework to find trace.h
35CFLAGS_trace.o := -I$(src)