From: "John W. Linville" <linville@tuxdriver.com>
To: Solomon Peachy <pizza@shaftnet.org>
Cc: linux-wireless@vger.kernel.org, Randy Dunlap <rdunlap@infradead.org>
Subject: Re: [PATCH 14/14] cw1200: v6: Kbuild integration and MAINTAINERS entry
Date: Fri, 3 May 2013 13:54:13 -0400 [thread overview]
Message-ID: <20130503175412.GL2069@tuxdriver.com> (raw)
In-Reply-To: <1367090847-11937-15-git-send-email-pizza@shaftnet.org>
This Kconfig file looks a bit whitespace-challenged...
On Sat, Apr 27, 2013 at 03:27:27PM -0400, Solomon Peachy wrote:
> Signed-off-by: Solomon Peachy <pizza@shaftnet.org>
> ---
> MAINTAINERS | 5 ++++
> drivers/net/wireless/Kconfig | 1 +
> drivers/net/wireless/Makefile | 3 +++
> drivers/net/wireless/cw1200/Kconfig | 46 ++++++++++++++++++++++++++++++++++++
> drivers/net/wireless/cw1200/Makefile | 25 ++++++++++++++++++++
> 5 files changed, 80 insertions(+)
> create mode 100644 drivers/net/wireless/cw1200/Kconfig
> create mode 100644 drivers/net/wireless/cw1200/Makefile
>
> diff --git a/MAINTAINERS b/MAINTAINERS
> index 8bdd7a7..c791d9e 100644
> --- a/MAINTAINERS
> +++ b/MAINTAINERS
> @@ -2266,6 +2266,11 @@ M: Jaya Kumar <jayakumar.alsa@gmail.com>
> S: Maintained
> F: sound/pci/cs5535audio/
>
> +CW1200 WLAN driver
> +M: Solomon Peachy <pizza@shaftnet.org>
> +S: Maintained
> +F: drivers/net/wireless/cw1200/
> +
> CX18 VIDEO4LINUX DRIVER
> M: Andy Walls <awalls@md.metrocast.net>
> L: ivtv-devel@ivtvdriver.org (moderated for non-subscribers)
> diff --git a/drivers/net/wireless/Kconfig b/drivers/net/wireless/Kconfig
> index f8f0156..200020e 100644
> --- a/drivers/net/wireless/Kconfig
> +++ b/drivers/net/wireless/Kconfig
> @@ -280,5 +280,6 @@ source "drivers/net/wireless/rtlwifi/Kconfig"
> source "drivers/net/wireless/ti/Kconfig"
> source "drivers/net/wireless/zd1211rw/Kconfig"
> source "drivers/net/wireless/mwifiex/Kconfig"
> +source "drivers/net/wireless/cw1200/Kconfig"
>
> endif # WLAN
> diff --git a/drivers/net/wireless/Makefile b/drivers/net/wireless/Makefile
> index 67156ef..56532fa 100644
> --- a/drivers/net/wireless/Makefile
> +++ b/drivers/net/wireless/Makefile
> @@ -57,3 +57,6 @@ obj-$(CONFIG_MWIFIEX) += mwifiex/
>
> obj-$(CONFIG_BRCMFMAC) += brcm80211/
> obj-$(CONFIG_BRCMSMAC) += brcm80211/
> +
> +obj-$(CONFIG_CW1200) += cw1200/
> +
> diff --git a/drivers/net/wireless/cw1200/Kconfig b/drivers/net/wireless/cw1200/Kconfig
> new file mode 100644
> index 0000000..de57443
> --- /dev/null
> +++ b/drivers/net/wireless/cw1200/Kconfig
> @@ -0,0 +1,46 @@
> +config CW1200
> + tristate "CW1200 WLAN support"
> + depends on MAC80211 && CFG80211
> + help
> + This is driver for the ST-E CW1100 & CW1200 WLAN chipsets.
> + This option just enables the driver core, see below for
> + specific bus support.
> +
> +if CW1200
> +
> +config CW1200_WLAN_SDIO
> + tristate "Support SDIO platforms"
> + depends on CW1200 && MMC
> + help
> + This enables support for the CW1200 via an SDIO bus.
> +
> +config CW1200_WLAN_SPI
> + tristate "Support SPI platforms"
> + depends on CW1200 && SPI
> + help
> + This enables support for the CW1200 via a SPI bus.
> +
> +config CW1200_WLAN_SAGRAD
> + tristate "Support Sagrad SG901-1091/1098 modules"
> + depends on CW1200_WLAN_SDIO
> + help
> + This provides the platform data glue to support the
> + Sagrad SG901-1091/1098 modules in their standard SDIO EVK.
> + It also includes example SPI platform data.
> +
> +menu "Driver debug features"
> + depends on CW1200 && DEBUGFS
> +
> +config CW1200_ETF
> + bool "Enable CW1200 Engineering Test Framework hooks"
> + help
> + If you don't know what this is, just say N.
> +
> +config CW1200_ITP
> + bool "Enable ITP access"
> + help
> + If you don't know what this is, just say N.
> +
> +endmenu
> +
> +endif
> diff --git a/drivers/net/wireless/cw1200/Makefile b/drivers/net/wireless/cw1200/Makefile
> new file mode 100644
> index 0000000..a92a87d
> --- /dev/null
> +++ b/drivers/net/wireless/cw1200/Makefile
> @@ -0,0 +1,25 @@
> +cw1200_core-y := \
> + fwio.o \
> + txrx.o \
> + main.o \
> + queue.o \
> + hwio.o \
> + bh.o \
> + wsm.o \
> + sta.o \
> + scan.o \
> + pm.o \
> + debug.o
> +cw1200_core-$(CONFIG_CW1200_ITP) += itp.o
> +
> +# CFLAGS_sta.o += -DDEBUG
> +
> +cw1200_wlan_sdio-y := cw1200_sdio.o
> +cw1200_wlan_spi-y := cw1200_spi.o
> +cw1200_wlan_sagrad-y := cw1200_sagrad.o
> +
> +obj-$(CONFIG_CW1200) += cw1200_core.o
> +obj-$(CONFIG_CW1200_WLAN_SDIO) += cw1200_wlan_sdio.o
> +obj-$(CONFIG_CW1200_WLAN_SPI) += cw1200_wlan_spi.o
> +obj-$(CONFIG_CW1200_WLAN_SAGRAD) += cw1200_wlan_sagrad.o
> +
> --
> 1.8.1.4
>
> --
> To unsubscribe from this list: send the line "unsubscribe linux-wireless" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at http://vger.kernel.org/majordomo-info.html
>
--
John W. Linville Someday the world will need a hero, and you
linville@tuxdriver.com might be all we have. Be ready.
next prev parent reply other threads:[~2013-05-03 17:54 UTC|newest]
Thread overview: 21+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-04-27 19:27 [PATCH] ST-E CW1200 driver (v6) Solomon Peachy
2013-04-27 19:27 ` [PATCH 01/14] cw1200: v6: Low-level hardware I/O access Solomon Peachy
2013-04-27 19:27 ` [PATCH 02/14] cw1200: v6: Internal TX queue handling & tracking Solomon Peachy
2013-04-27 19:27 ` [PATCH 03/14] cw1200: v6: Scanning implemtation Solomon Peachy
2013-04-27 19:27 ` [PATCH 04/14] cw1200: v6: WoWLAN power management Solomon Peachy
2013-04-27 19:27 ` [PATCH 05/14] cw1200: v6: Firmware loading Solomon Peachy
2013-04-27 19:27 ` [PATCH 06/14] cw1200: v6: Debugging hooks and test tool support Solomon Peachy
2013-04-27 19:27 ` [PATCH 07/14] cw1200: v6: mac80211 API implementation Solomon Peachy
2013-04-27 19:27 ` [PATCH 08/14] cw1200: v6: Packet TX/RX Solomon Peachy
2013-04-27 19:27 ` [PATCH 09/14] cw1200: v6: WSM (host-firmware) interface Solomon Peachy
2013-04-27 19:27 ` [PATCH 10/14] cw1200: v6: Main processing loop Solomon Peachy
2013-04-27 19:27 ` [PATCH 11/14] cw1200: v6: Common definitions, state, and registration handling Solomon Peachy
2013-04-27 19:27 ` [PATCH 12/14] cw1200: v6: Platform definitions, plus SDIO and SPI bus glue code Solomon Peachy
2013-04-27 19:27 ` [PATCH 13/14] cw1200: v6: Module defining platform data for Sagrad SG901-1091/1098 modules Solomon Peachy
2013-04-27 19:27 ` [PATCH 14/14] cw1200: v6: Kbuild integration and MAINTAINERS entry Solomon Peachy
2013-05-03 17:54 ` John W. Linville [this message]
2013-05-03 19:32 ` Solomon Peachy
2013-05-03 20:29 ` John W. Linville
2013-05-03 19:37 ` [PATCH 14/14] cw1200: v6: Kbuild integration and MAINTAINERS entry (v2) Solomon Peachy
2013-05-24 17:50 ` [PATCH] ST-E CW1200 driver (v6) John W. Linville
2013-05-24 23:36 ` Solomon Peachy
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20130503175412.GL2069@tuxdriver.com \
--to=linville@tuxdriver.com \
--cc=linux-wireless@vger.kernel.org \
--cc=pizza@shaftnet.org \
--cc=rdunlap@infradead.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
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).