From: Kalle Valo <kvalo@qca.qualcomm.com>
To: linux-wireless@vger.kernel.org
Cc: ath10k-devel@qca.qualcomm.com
Subject: [PATCH v2 29/29] ath10k: add Kconfig and Makefile
Date: Sat, 01 Jun 2013 14:27:44 +0300 [thread overview]
Message-ID: <20130601112744.32443.80409.stgit@localhost6.localdomain6> (raw)
In-Reply-To: <20130601111820.32443.46794.stgit@localhost6.localdomain6>
Signed-off-by: Kalle Valo <kvalo@qca.qualcomm.com>
---
drivers/net/wireless/ath/ath10k/Kconfig | 39 ++++++++++++++++++++++++++++++
drivers/net/wireless/ath/ath10k/Makefile | 20 +++++++++++++++
2 files changed, 59 insertions(+)
create mode 100644 drivers/net/wireless/ath/ath10k/Kconfig
create mode 100644 drivers/net/wireless/ath/ath10k/Makefile
diff --git a/drivers/net/wireless/ath/ath10k/Kconfig b/drivers/net/wireless/ath/ath10k/Kconfig
new file mode 100644
index 0000000..cde58fe
--- /dev/null
+++ b/drivers/net/wireless/ath/ath10k/Kconfig
@@ -0,0 +1,39 @@
+config ATH10K
+ tristate "Atheros 802.11ac wireless cards support"
+ depends on MAC80211
+ select ATH_COMMON
+ ---help---
+ This module adds support for wireless adapters based on
+ Atheros IEEE 802.11ac family of chipsets.
+
+ If you choose to build a module, it'll be called ath10k.
+
+config ATH10K_PCI
+ tristate "Atheros ath10k PCI support"
+ depends on ATH10K && PCI
+ ---help---
+ This module adds support for PCIE bus
+
+config ATH10K_DEBUG
+ bool "Atheros ath10k debugging"
+ depends on ATH10K
+ ---help---
+ Enables debug support
+
+ If unsure, say Y to make it easier to debug problems.
+
+config ATH10K_DEBUGFS
+ bool "Atheros ath10k debugfs support"
+ depends on ATH10K
+ ---help---
+ Enabled debugfs support
+
+ If unsure, say Y to make it easier to debug problems.
+
+config ATH10K_TRACING
+ bool "Atheros ath10k tracing support"
+ depends on ATH10K
+ depends on EVENT_TRACING
+ ---help---
+ Select this to ath10k use tracing infrastructure.
+
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)
prev parent reply other threads:[~2013-06-01 11:27 UTC|newest]
Thread overview: 30+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-06-01 11:24 [PATCH v2 00/29] ath10k: mac80211 driver for Qualcomm Atheros 802.11ac CQA98xx devices Kalle Valo
2013-06-01 11:24 ` [PATCH v2 01/29] ath10k: add bmi.c Kalle Valo
2013-06-01 11:24 ` [PATCH v2 02/29] ath10k: add bmi.h Kalle Valo
2013-06-01 11:24 ` [PATCH v2 03/29] ath10k: add ce.c Kalle Valo
2013-06-01 11:24 ` [PATCH v2 04/29] ath10k: add ce.h Kalle Valo
2013-06-01 11:24 ` [PATCH v2 05/29] ath10k: add core.c Kalle Valo
2013-06-01 11:24 ` [PATCH v2 06/29] ath10k: add core.h Kalle Valo
2013-06-01 11:24 ` [PATCH v2 07/29] ath10k: add debug.c Kalle Valo
2013-06-01 11:25 ` [PATCH v2 08/29] ath10k: add debug.h Kalle Valo
2013-06-01 11:25 ` [PATCH v2 09/29] ath10k: add hif.h Kalle Valo
2013-06-01 11:25 ` [PATCH v2 10/29] ath10k: add htc.c Kalle Valo
2013-06-01 11:25 ` [PATCH v2 11/29] ath10k: add htc.h Kalle Valo
2013-06-01 11:25 ` [PATCH v2 12/29] ath10k: add htt.c Kalle Valo
2013-06-01 11:25 ` [PATCH v2 13/29] ath10k: add htt.h Kalle Valo
2013-06-01 11:25 ` [PATCH v2 14/29] ath10k: add htt_rx.c Kalle Valo
2013-06-01 11:26 ` [PATCH v2 15/29] ath10k: add htt_tx.c Kalle Valo
2013-06-01 11:26 ` [PATCH v2 16/29] ath10k: add hw.h Kalle Valo
2013-06-01 11:26 ` [PATCH v2 17/29] ath10k: add mac.c Kalle Valo
2013-06-01 11:26 ` [PATCH v2 18/29] ath10k: add mac.h Kalle Valo
2013-06-01 11:26 ` [PATCH v2 19/29] ath10k: add pci.c Kalle Valo
2013-06-01 11:26 ` [PATCH v2 20/29] ath10k: add pci.h Kalle Valo
2013-06-01 11:26 ` [PATCH v2 21/29] ath10k: add rx_desc.h Kalle Valo
2013-06-01 11:26 ` [PATCH v2 22/29] ath10k: add targaddrs.h Kalle Valo
2013-06-01 11:27 ` [PATCH v2 23/29] ath10k: add trace.c Kalle Valo
2013-06-01 11:27 ` [PATCH v2 24/29] ath10k: add trace.h Kalle Valo
2013-06-01 11:27 ` [PATCH v2 25/29] ath10k: add txrx.c Kalle Valo
2013-06-01 11:27 ` [PATCH v2 26/29] ath10k: add txrx.h Kalle Valo
2013-06-01 11:27 ` [PATCH v2 27/29] ath10k: add wmi.c Kalle Valo
2013-06-01 11:27 ` [PATCH v2 28/29] ath10k: add wmi.h Kalle Valo
2013-06-01 11:27 ` Kalle Valo [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20130601112744.32443.80409.stgit@localhost6.localdomain6 \
--to=kvalo@qca.qualcomm.com \
--cc=ath10k-devel@qca.qualcomm.com \
--cc=linux-wireless@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox