-
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.
yaml --- r: 136183 b: refs/heads/master c: 75ca88c h: refs/heads/master i: 136181: 2f6bc46 136179: b286ca8 136175: fb432af v: v3
- Loading branch information
Christian Lamparter
authored and
John W. Linville
committed
Mar 28, 2009
1 parent
ba252c6
commit b9826af
Showing
6 changed files
with
44 additions
and
1 deletion.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
--- | ||
refs/heads/master: b63a2cb30405777033d58045c562a3b04d87d702 | ||
refs/heads/master: 75ca88c9701bf8f65fc1f009f10dd64b0378b977 |
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,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 |
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,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 |