diff options
author | Christian Lamparter <chunkeey@googlemail.com> | 2010-09-05 19:10:25 -0400 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2010-09-14 16:03:42 -0400 |
commit | 1d7e1e6b1b8ed456e7678130ad17086a5f5b3286 (patch) | |
tree | b57e9fa1a35223b5093ede1280da28ab0cb79b61 | |
parent | 00c4da27a4219385cfe6a3054ddf3195c9e3c30e (diff) |
carl9170: Makefile, Kconfig files and MAINTAINERS
Signed-off-by: Christian Lamparter <chunkeey@googlemail.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
-rw-r--r-- | MAINTAINERS | 7 | ||||
-rw-r--r-- | drivers/net/wireless/ath/Kconfig | 1 | ||||
-rw-r--r-- | drivers/net/wireless/ath/Makefile | 1 | ||||
-rw-r--r-- | drivers/net/wireless/ath/carl9170/Kconfig | 41 | ||||
-rw-r--r-- | drivers/net/wireless/ath/carl9170/Makefile | 4 |
5 files changed, 54 insertions, 0 deletions
diff --git a/MAINTAINERS b/MAINTAINERS index 4a6d93648b9c..80cea03a737e 100644 --- a/MAINTAINERS +++ b/MAINTAINERS | |||
@@ -1102,6 +1102,13 @@ W: http://wireless.kernel.org/en/users/Drivers/ar9170 | |||
1102 | S: Maintained | 1102 | S: Maintained |
1103 | F: drivers/net/wireless/ath/ar9170/ | 1103 | F: drivers/net/wireless/ath/ar9170/ |
1104 | 1104 | ||
1105 | CARL9170 LINUX COMMUNITY WIRELESS DRIVER | ||
1106 | M: Christian Lamparter <chunkeey@googlemail.com> | ||
1107 | L: linux-wireless@vger.kernel.org | ||
1108 | W: http://wireless.kernel.org/en/users/Drivers/carl9170 | ||
1109 | S: Maintained | ||
1110 | F: drivers/net/wireless/ath/carl9170/ | ||
1111 | |||
1105 | ATK0110 HWMON DRIVER | 1112 | ATK0110 HWMON DRIVER |
1106 | M: Luca Tettamanti <kronos.it@gmail.com> | 1113 | M: Luca Tettamanti <kronos.it@gmail.com> |
1107 | L: lm-sensors@lm-sensors.org | 1114 | L: lm-sensors@lm-sensors.org |
diff --git a/drivers/net/wireless/ath/Kconfig b/drivers/net/wireless/ath/Kconfig index 0a75be027afa..92c216263ee9 100644 --- a/drivers/net/wireless/ath/Kconfig +++ b/drivers/net/wireless/ath/Kconfig | |||
@@ -25,5 +25,6 @@ config ATH_DEBUG | |||
25 | source "drivers/net/wireless/ath/ath5k/Kconfig" | 25 | source "drivers/net/wireless/ath/ath5k/Kconfig" |
26 | source "drivers/net/wireless/ath/ath9k/Kconfig" | 26 | source "drivers/net/wireless/ath/ath9k/Kconfig" |
27 | source "drivers/net/wireless/ath/ar9170/Kconfig" | 27 | source "drivers/net/wireless/ath/ar9170/Kconfig" |
28 | source "drivers/net/wireless/ath/carl9170/Kconfig" | ||
28 | 29 | ||
29 | endif | 30 | endif |
diff --git a/drivers/net/wireless/ath/Makefile b/drivers/net/wireless/ath/Makefile index 8113a5042afa..40fa1794d489 100644 --- a/drivers/net/wireless/ath/Makefile +++ b/drivers/net/wireless/ath/Makefile | |||
@@ -1,6 +1,7 @@ | |||
1 | obj-$(CONFIG_ATH5K) += ath5k/ | 1 | obj-$(CONFIG_ATH5K) += ath5k/ |
2 | obj-$(CONFIG_ATH9K_HW) += ath9k/ | 2 | obj-$(CONFIG_ATH9K_HW) += ath9k/ |
3 | obj-$(CONFIG_AR9170_USB) += ar9170/ | 3 | obj-$(CONFIG_AR9170_USB) += ar9170/ |
4 | obj-$(CONFIG_CARL9170) += carl9170/ | ||
4 | 5 | ||
5 | obj-$(CONFIG_ATH_COMMON) += ath.o | 6 | obj-$(CONFIG_ATH_COMMON) += ath.o |
6 | 7 | ||
diff --git a/drivers/net/wireless/ath/carl9170/Kconfig b/drivers/net/wireless/ath/carl9170/Kconfig new file mode 100644 index 000000000000..c5d3a3f2e55b --- /dev/null +++ b/drivers/net/wireless/ath/carl9170/Kconfig | |||
@@ -0,0 +1,41 @@ | |||
1 | config CARL9170 | ||
2 | tristate "Linux Community AR9170 802.11n USB support" | ||
3 | depends on USB && MAC80211 && EXPERIMENTAL | ||
4 | select FW_LOADER | ||
5 | select CRC32 | ||
6 | help | ||
7 | This is another driver for the Atheros "otus" 802.11n USB devices. | ||
8 | |||
9 | This driver provides more features than the original, | ||
10 | but it needs a special firmware (carl9170-1.fw) to do that. | ||
11 | |||
12 | The firmware can be downloaded from our wiki here: | ||
13 | http://wireless.kernel.org/en/users/Drivers/carl9170 | ||
14 | |||
15 | If you choose to build a module, it'll be called carl9170. | ||
16 | |||
17 | config CARL9170_LEDS | ||
18 | bool "SoftLED Support" | ||
19 | depends on CARL9170 | ||
20 | select MAC80211_LEDS | ||
21 | select LEDS_CLASS | ||
22 | select NEW_LEDS | ||
23 | default y | ||
24 | help | ||
25 | This option is necessary, if you want your device' LEDs to blink | ||
26 | |||
27 | Say Y, unless you need the LEDs for firmware debugging. | ||
28 | |||
29 | config CARL9170_DEBUGFS | ||
30 | bool "DebugFS Support" | ||
31 | depends on CARL9170 && DEBUG_FS && MAC80211_DEBUGFS | ||
32 | default n | ||
33 | help | ||
34 | Export several driver and device internals to user space. | ||
35 | |||
36 | Say N. | ||
37 | |||
38 | config CARL9170_WPC | ||
39 | bool | ||
40 | depends on CARL9170 && (INPUT = y || INPUT = CARL9170) | ||
41 | default y | ||
diff --git a/drivers/net/wireless/ath/carl9170/Makefile b/drivers/net/wireless/ath/carl9170/Makefile new file mode 100644 index 000000000000..f64ed76af8ad --- /dev/null +++ b/drivers/net/wireless/ath/carl9170/Makefile | |||
@@ -0,0 +1,4 @@ | |||
1 | carl9170-objs := main.o usb.o cmd.o mac.o phy.o led.o fw.o tx.o rx.o | ||
2 | carl9170-$(CONFIG_CARL9170_DEBUGFS) += debug.o | ||
3 | |||
4 | obj-$(CONFIG_CARL9170) += carl9170.o | ||