summaryrefslogtreecommitdiff
path: root/drivers/net/wireless/ath/ath10k/Makefile
diff options
context:
space:
mode:
authorKalle Valo <kvalo@qca.qualcomm.com>2013-06-12 17:52:10 (GMT)
committerKalle Valo <kvalo@qca.qualcomm.com>2013-06-12 17:52:10 (GMT)
commit5e3dd157d7e70f0e3cea3f2573ed69fb156a19d5 (patch)
treee45775b51f67b4bbab19994a989b5aecb7065efe /drivers/net/wireless/ath/ath10k/Makefile
parent8b3e7be437a6b62118d0485ad971e724afe23fdf (diff)
downloadlinux-5e3dd157d7e70f0e3cea3f2573ed69fb156a19d5.tar.xz
ath10k: mac80211 driver for Qualcomm Atheros 802.11ac CQA98xx devices
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>
Diffstat (limited to 'drivers/net/wireless/ath/ath10k/Makefile')
-rw-r--r--drivers/net/wireless/ath/ath10k/Makefile20
1 files changed, 20 insertions, 0 deletions
diff --git a/drivers/net/wireless/ath/ath10k/Makefile b/drivers/net/wireless/ath/ath10k/Makefile
new file mode 100644
index 0000000..a4179f4
--- /dev/null
+++ b/drivers/net/wireless/ath/ath10k/Makefile
@@ -0,0 +1,20 @@
+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)