The QCA6174 in combination with new wmi-tlv firmware is capable of multi-channel, beamforming, tdls and other features. This patch just makes it possible to boot these devices and do some basic stuff like connect to an AP without encryption. Some things may not work or may be unreliable. New features will be implemented later. This will be addressed eventually with future patches. Signed-off-by: Michal Kazior <michal.kazior@tieto.com> Signed-off-by: Kalle Valo <kvalo@qca.qualcomm.com>
26 lines
588 B
Makefile
26 lines
588 B
Makefile
obj-$(CONFIG_ATH10K) += ath10k_core.o
|
|
ath10k_core-y += mac.o \
|
|
debug.o \
|
|
core.o \
|
|
htc.o \
|
|
htt.o \
|
|
htt_rx.o \
|
|
htt_tx.o \
|
|
txrx.o \
|
|
wmi.o \
|
|
wmi-tlv.o \
|
|
bmi.o \
|
|
hw.o
|
|
|
|
ath10k_core-$(CONFIG_ATH10K_DEBUGFS) += spectral.o
|
|
ath10k_core-$(CONFIG_NL80211_TESTMODE) += testmode.o
|
|
ath10k_core-$(CONFIG_ATH10K_TRACING) += trace.o
|
|
ath10k_core-$(CONFIG_THERMAL) += thermal.o
|
|
ath10k_core-$(CONFIG_MAC80211_DEBUGFS) += debugfs_sta.o
|
|
|
|
obj-$(CONFIG_ATH10K_PCI) += ath10k_pci.o
|
|
ath10k_pci-y += pci.o \
|
|
ce.o
|
|
|
|
# for tracing framework to find trace.h
|
|
CFLAGS_trace.o := -I$(src)
|