-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' of git://git.kernel.org/pub/scm/linux/kernel/gi…
…t/linville/wireless-next into for-davem Conflicts: net/wireless/nl80211.c
- Loading branch information
Showing
210 changed files
with
27,577 additions
and
2,842 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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) |
Oops, something went wrong.