Skip to content

Commit fb9987d

Browse files
Sujithlinvjw
Sujith
authored andcommitted
ath9k_htc: Support for AR9271 chipset.
Features: * Station mode * IBSS mode * Monitor mode * Legacy support * HT support * TX/RX 11n Aggregation * HW encryption * LED * Suspend/Resume For more information: http://wireless.kernel.org/en/users/Drivers/ath9k_htc Signed-off-by: Sujith <[email protected]> Signed-off-by: Vasanthakumar Thiagarajan <[email protected]> Signed-off-by: Senthil Balasubramanian <[email protected]> Signed-off-by: John W. Linville <[email protected]>
1 parent 736b3a2 commit fb9987d

18 files changed

+6393
-1
lines changed

drivers/net/wireless/ath/Kconfig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ menuconfig ATH_COMMON
33
depends on CFG80211
44
---help---
55
This will enable the support for the Atheros wireless drivers.
6-
ath5k, ath9k and ar9170 drivers share some common code, this option
6+
ath5k, ath9k, ath9k_htc and ar9170 drivers share some common code, this option
77
enables the common ath.ko module which shares common helpers.
88

99
For more information and documentation on this module you can visit:

drivers/net/wireless/ath/ath9k/Kconfig

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,3 +32,24 @@ config ATH9K_DEBUGFS
3232

3333
Also required for changing debug message flags at run time.
3434

35+
config ATH9K_HTC
36+
tristate "Atheros HTC based wireless cards support"
37+
depends on USB && MAC80211
38+
select ATH9K_HW
39+
select MAC80211_LEDS
40+
select LEDS_CLASS
41+
select NEW_LEDS
42+
select ATH9K_COMMON
43+
---help---
44+
Support for Atheros HTC based cards.
45+
Chipsets supported: AR9271
46+
47+
For more information: http://wireless.kernel.org/en/users/Drivers/ath9k_htc
48+
49+
The built module will be ath9k_htc.
50+
51+
config ATH9K_HTC_DEBUGFS
52+
bool "Atheros ath9k_htc debugging"
53+
depends on ATH9K_HTC && DEBUG_FS
54+
---help---
55+
Say Y, if you need access to ath9k_htc's statistics.

drivers/net/wireless/ath/ath9k/Makefile

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,3 +28,13 @@ obj-$(CONFIG_ATH9K_HW) += ath9k_hw.o
2828

2929
obj-$(CONFIG_ATH9K_COMMON) += ath9k_common.o
3030
ath9k_common-y:= common.o
31+
32+
ath9k_htc-y += htc_hst.o \
33+
hif_usb.o \
34+
wmi.o \
35+
htc_drv_txrx.o \
36+
htc_drv_main.o \
37+
htc_drv_beacon.o \
38+
htc_drv_init.o
39+
40+
obj-$(CONFIG_ATH9K_HTC) += ath9k_htc.o

0 commit comments

Comments
 (0)