ar9170: update Makefile, Kconfig and MAINTAINERS
This patch update all necessary Makefile and Kconfig files. Now you can then enable ar9170 in the kernel configuration under: Device Drivers ---> [*] Network device support ---> Wireless LAN ---> [*] Wireless LAN (IEEE 802.11) <M> Atheros AR9170 support <M> Atheros AR9170 USB support Signed-off-by: Christian Lamparter <chunkeey@web.de> Signed-off-by: John W. Linville <linville@tuxdriver.com>
This commit is contained in:
parent
b63a2cb304
commit
75ca88c970
|
@ -765,6 +765,14 @@ L: linux-wireless@vger.kernel.org
|
||||||
L: ath9k-devel@lists.ath9k.org
|
L: ath9k-devel@lists.ath9k.org
|
||||||
S: Supported
|
S: Supported
|
||||||
|
|
||||||
|
ATHEROS AR9170 WIRELESS DRIVER
|
||||||
|
P: Christian Lamparter
|
||||||
|
M: chunkeey@web.de
|
||||||
|
L: linux-wireless@vger.kernel.org
|
||||||
|
W: http://wireless.kernel.org/en/users/Drivers/ar9170
|
||||||
|
S: Maintained
|
||||||
|
F: drivers/net/wireless/ar9170/
|
||||||
|
|
||||||
ATI_REMOTE2 DRIVER
|
ATI_REMOTE2 DRIVER
|
||||||
P: Ville Syrjala
|
P: Ville Syrjala
|
||||||
M: syrjala@sci.fi
|
M: syrjala@sci.fi
|
||||||
|
|
|
@ -485,6 +485,7 @@ config MWL8K
|
||||||
source "drivers/net/wireless/p54/Kconfig"
|
source "drivers/net/wireless/p54/Kconfig"
|
||||||
source "drivers/net/wireless/ath5k/Kconfig"
|
source "drivers/net/wireless/ath5k/Kconfig"
|
||||||
source "drivers/net/wireless/ath9k/Kconfig"
|
source "drivers/net/wireless/ath9k/Kconfig"
|
||||||
|
source "drivers/net/wireless/ar9170/Kconfig"
|
||||||
source "drivers/net/wireless/ipw2x00/Kconfig"
|
source "drivers/net/wireless/ipw2x00/Kconfig"
|
||||||
source "drivers/net/wireless/iwlwifi/Kconfig"
|
source "drivers/net/wireless/iwlwifi/Kconfig"
|
||||||
source "drivers/net/wireless/hostap/Kconfig"
|
source "drivers/net/wireless/hostap/Kconfig"
|
||||||
|
|
|
@ -57,5 +57,6 @@ obj-$(CONFIG_P54_COMMON) += p54/
|
||||||
|
|
||||||
obj-$(CONFIG_ATH5K) += ath5k/
|
obj-$(CONFIG_ATH5K) += ath5k/
|
||||||
obj-$(CONFIG_ATH9K) += ath9k/
|
obj-$(CONFIG_ATH9K) += ath9k/
|
||||||
|
obj-$(CONFIG_AR9170_COMMON) += ar9170/
|
||||||
|
|
||||||
obj-$(CONFIG_MAC80211_HWSIM) += mac80211_hwsim.o
|
obj-$(CONFIG_MAC80211_HWSIM) += mac80211_hwsim.o
|
||||||
|
|
|
@ -0,0 +1,28 @@
|
||||||
|
config AR9170_COMMON
|
||||||
|
tristate "Atheros AR9170 support"
|
||||||
|
depends on WLAN_80211 && MAC80211 && EXPERIMENTAL
|
||||||
|
help
|
||||||
|
This is common code for AR9170 based devices.
|
||||||
|
This module does nothing by itself - the USB/(SPI) frontends
|
||||||
|
also need to be enabled in order to support any devices.
|
||||||
|
|
||||||
|
Say Y if you have the hardware, or M to build a module called
|
||||||
|
ar9170common.
|
||||||
|
|
||||||
|
config AR9170_USB
|
||||||
|
tristate "Atheros AR9170 USB support"
|
||||||
|
depends on AR9170_COMMON && USB
|
||||||
|
select FW_LOADER
|
||||||
|
help
|
||||||
|
This is a driver for the Atheros "otus" 802.11n USB devices.
|
||||||
|
|
||||||
|
These devices require additional firmware (2 files).
|
||||||
|
For now, these files can be downloaded from here:
|
||||||
|
http://wireless.kernel.org/en/users/Drivers/ar9170
|
||||||
|
|
||||||
|
If you choose to build a module, it'll be called ar9170usb.
|
||||||
|
|
||||||
|
config AR9170_LEDS
|
||||||
|
bool
|
||||||
|
depends on AR9170_COMMON && MAC80211_LEDS && (LEDS_CLASS = y || LEDS_CLASS = AR9170_COMMON)
|
||||||
|
default y
|
|
@ -0,0 +1,5 @@
|
||||||
|
ar9170common-objs += main.o cmd.o mac.o phy.o led.o
|
||||||
|
ar9170usb-objs += usb.o
|
||||||
|
|
||||||
|
obj-$(CONFIG_AR9170_COMMON) += ar9170common.o
|
||||||
|
obj-$(CONFIG_AR9170_USB) += ar9170usb.o
|
Loading…
Reference in New Issue