forked from Minki/linux
5e3dd157d7
Here's a new mac80211 driver for Qualcomm Atheros 802.11ac QCA98xx devices. A major difference from ath9k is that there's now a firmware and that's why we had to implement a new driver. The wiki page for the driver is: http://wireless.kernel.org/en/users/Drivers/ath10k The driver has had many authors, they are listed here alphabetically: Bartosz Markowski <bartosz.markowski@tieto.com> Janusz Dziedzic <janusz.dziedzic@tieto.com> Kalle Valo <kvalo@qca.qualcomm.com> Marek Kwaczynski <marek.kwaczynski@tieto.com> Marek Puzyniak <marek.puzyniak@tieto.com> Michal Kazior <michal.kazior@tieto.com> Sujith Manoharan <c_manoha@qca.qualcomm.com> Signed-off-by: Kalle Valo <kvalo@qca.qualcomm.com>
21 lines
360 B
Makefile
21 lines
360 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 \
|
|
bmi.o
|
|
|
|
ath10k_core-$(CONFIG_ATH10K_TRACING) += trace.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)
|