linux-wireless.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [RFT 6/6] carl9170usb: Makefile, Kconfig files and MAINTAINERS
@ 2010-08-30 20:42 Christian Lamparter
  2010-08-30 22:45 ` Julian Calaby
  0 siblings, 1 reply; 3+ messages in thread
From: Christian Lamparter @ 2010-08-30 20:42 UTC (permalink / raw)
  To: linux-wireless

Signed-off-by: Christian Lamparter <chunkeey@googlemail.com>
---
 MAINTAINERS                                |    1 +
 drivers/net/wireless/ath/Kconfig           |    1 +
 drivers/net/wireless/ath/Makefile          |    1 +
 drivers/net/wireless/ath/carl9170/Kconfig  |   37 ++++++++++++++++++++++++++++
 drivers/net/wireless/ath/carl9170/Makefile |    4 +++
 5 files changed, 44 insertions(+), 0 deletions(-)
 create mode 100644 drivers/net/wireless/ath/carl9170/Kconfig
 create mode 100644 drivers/net/wireless/ath/carl9170/Makefile

diff --git a/MAINTAINERS b/MAINTAINERS
index 63e441b..1f10089 100644
--- a/MAINTAINERS
+++ b/MAINTAINERS
@@ -1119,6 +1119,7 @@ L:	linux-wireless@vger.kernel.org
 W:	http://wireless.kernel.org/en/users/Drivers/ar9170
 S:	Maintained
 F:	drivers/net/wireless/ath/ar9170/
+F:	drivers/net/wireless/ath/carl9170/
 
 ATK0110 HWMON DRIVER
 M:	Luca Tettamanti <kronos.it@gmail.com>
diff --git a/drivers/net/wireless/ath/Kconfig b/drivers/net/wireless/ath/Kconfig
index 0a75be0..92c2162 100644
--- a/drivers/net/wireless/ath/Kconfig
+++ b/drivers/net/wireless/ath/Kconfig
@@ -25,5 +25,6 @@ config ATH_DEBUG
 source "drivers/net/wireless/ath/ath5k/Kconfig"
 source "drivers/net/wireless/ath/ath9k/Kconfig"
 source "drivers/net/wireless/ath/ar9170/Kconfig"
+source "drivers/net/wireless/ath/carl9170/Kconfig"
 
 endif
diff --git a/drivers/net/wireless/ath/Makefile b/drivers/net/wireless/ath/Makefile
index 8113a50..75c372b 100644
--- a/drivers/net/wireless/ath/Makefile
+++ b/drivers/net/wireless/ath/Makefile
@@ -1,6 +1,7 @@
 obj-$(CONFIG_ATH5K)		+= ath5k/
 obj-$(CONFIG_ATH9K_HW)		+= ath9k/
 obj-$(CONFIG_AR9170_USB)        += ar9170/
+obj-$(CONFIG_CARL9170_USB)        += carl9170/
 
 obj-$(CONFIG_ATH_COMMON)	+= ath.o
 
diff --git a/drivers/net/wireless/ath/carl9170/Kconfig b/drivers/net/wireless/ath/carl9170/Kconfig
new file mode 100644
index 0000000..cd3815a
--- /dev/null
+++ b/drivers/net/wireless/ath/carl9170/Kconfig
@@ -0,0 +1,37 @@
+config CARL9170_USB
+	tristate "Community Driver for Atheros AR9170 802.11n USB support"
+	depends on USB && MAC80211 && EXPERIMENTAL
+	select FW_LOADER
+	help
+	  This is another driver for the Atheros "otus" 802.11n USB devices.
+
+	  This driver provides more features than the original,
+	  but it needs a special firmware (carl9170-1.fw) to do that.
+
+	  The firmware can be downloaded from here:
+
+	  http://wireless.kernel.org/en/users/Drivers/carl9170
+
+	  If you choose to build a module, it'll be called carl9170usb.
+
+config CARL9170_LEDS
+	bool "LED Support"
+	depends on CARL9170_USB && MAC80211_LEDS && (LEDS_CLASS = y || LEDS_CLASS = CARL9170_USB)
+	default y
+	help
+	  This option is necessary, if you want your device' LEDs to blink
+
+	  Say Y, unless you need the LEDs for firmware debugging.
+
+config CARL9170_DEBUGFS
+	bool "Debugging (DebugFS) Support"
+	depends on CARL9170_USB && MAC80211_DEBUGFS
+	default y
+	help
+	  Say Y, if you need access to carl9170usb's statistics for
+	  QoS queue status, rate control, etc.
+
+config CARL9170_WPS_BUTTON
+	bool
+	depends on CARL9170_USB && (INPUT = y || INPUT = CARL9170_USB)
+	default y
diff --git a/drivers/net/wireless/ath/carl9170/Makefile b/drivers/net/wireless/ath/carl9170/Makefile
new file mode 100644
index 0000000..2fba020
--- /dev/null
+++ b/drivers/net/wireless/ath/carl9170/Makefile
@@ -0,0 +1,4 @@
+carl9170usb-objs := main.o usb.o cmd.o mac.o phy.o led.o fw.o tx.o rx.o
+carl9170usb-$(CONFIG_CARL9170_DEBUGFS) += debug.o
+
+obj-$(CONFIG_CARL9170_USB) += carl9170usb.o
-- 
1.7.1


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [RFT 6/6] carl9170usb: Makefile, Kconfig files and MAINTAINERS
  2010-08-30 20:42 [RFT 6/6] carl9170usb: Makefile, Kconfig files and MAINTAINERS Christian Lamparter
@ 2010-08-30 22:45 ` Julian Calaby
  2010-08-30 23:20   ` Christian Lamparter
  0 siblings, 1 reply; 3+ messages in thread
From: Julian Calaby @ 2010-08-30 22:45 UTC (permalink / raw)
  To: Christian Lamparter; +Cc: linux-wireless

Christian,

Minor, *minor* nit.

On Tue, Aug 31, 2010 at 06:42, Christian Lamparter
<chunkeey@googlemail.com> wrote:
> diff --git a/MAINTAINERS b/MAINTAINERS
> index 63e441b..1f10089 100644
> --- a/MAINTAINERS
> +++ b/MAINTAINERS
> @@ -1119,6 +1119,7 @@ L:        linux-wireless@vger.kernel.org
>  W:     http://wireless.kernel.org/en/users/Drivers/ar9170
>  S:     Maintained
>  F:     drivers/net/wireless/ath/ar9170/
> +F:     drivers/net/wireless/ath/carl9170/
>
>  ATK0110 HWMON DRIVER
>  M:     Luca Tettamanti <kronos.it@gmail.com>

As carl9170 has a separate website, would it make sense for it to also
have a separate MAINTAINERS entry?

Also, patch 1/6 is signed off by root, you may want to fix that.

Thanks,

-- 

Julian Calaby

Email: julian.calaby@gmail.com
Profile: http://www.google.com/profiles/julian.calaby/
.Plan: http://sites.google.com/site/juliancalaby/

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [RFT 6/6] carl9170usb: Makefile, Kconfig files and MAINTAINERS
  2010-08-30 22:45 ` Julian Calaby
@ 2010-08-30 23:20   ` Christian Lamparter
  0 siblings, 0 replies; 3+ messages in thread
From: Christian Lamparter @ 2010-08-30 23:20 UTC (permalink / raw)
  To: Julian Calaby; +Cc: linux-wireless

On Tuesday 31 August 2010 00:45:42 Julian Calaby wrote:
> On Tue, Aug 31, 2010 at 06:42, Christian Lamparter
> <chunkeey@googlemail.com> wrote:
> > diff --git a/MAINTAINERS b/MAINTAINERS
> > index 63e441b..1f10089 100644
> > --- a/MAINTAINERS
> > +++ b/MAINTAINERS
> > @@ -1119,6 +1119,7 @@ L:        linux-wireless@vger.kernel.org
> >  W:     http://wireless.kernel.org/en/users/Drivers/ar9170
> >  S:     Maintained
> >  F:     drivers/net/wireless/ath/ar9170/
> > +F:     drivers/net/wireless/ath/carl9170/
> >
> >  ATK0110 HWMON DRIVER
> >  M:     Luca Tettamanti <kronos.it@gmail.com>
> 
> As carl9170 has a separate website, would it make sense for it to also
> have a separate MAINTAINERS entry?
On one hand the driver is based on ar9170 and uses the same device,
but having an separate entry might be favorable when ar9170usb is
dropped...

> Also, patch 1/6 is signed off by root, you may want to fix that.
Thanks!

---

By the way:

ALL COMPAT-WIRELESS USERS WITH OLDER KERNELS (older than 2.6.36-rc1, 2.6.35.2,
etc...) have to apply this patch:
> https://patchwork.kernel.org/patch/118946/
(Or, suffer from panics.)

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2010-08-30 23:21 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-08-30 20:42 [RFT 6/6] carl9170usb: Makefile, Kconfig files and MAINTAINERS Christian Lamparter
2010-08-30 22:45 ` Julian Calaby
2010-08-30 23:20   ` Christian Lamparter

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).