All of lore.kernel.org
 help / color / mirror / Atom feed
From: "Arend van Spriel" <arend@broadcom.com>
To: "John W. Linville" <linville@tuxdriver.com>
Cc: "Linux Wireless List" <linux-wireless@vger.kernel.org>,
	"Arend van Spriel" <arend@broadcom.com>
Subject: [PATCH 00/11] brcm80211: cleanup patches
Date: Wed, 5 Dec 2012 15:25:53 +0100	[thread overview]
Message-ID: <1354717564-7183-1-git-send-email-arend@broadcom.com> (raw)

For brcmsmac there is only one patch that fixes a warning when
building for ARM. The brcmfmac patches are mostly dealing with
debug facility. The driver had two separate ones that are now
consolidated into one.

Arend van Spriel (10):
  brcmfmac: rework bus interface
  brcmsmac: fix uninitialized variable warning on arm architecture
  brcmfmac: use one list of event defintions
  brcmfmac: error messages should not be suppressed
  brcmfmac: consolidate debug macros in wl_cfg80211
  brcmfmac: replace WL_ERR() with brcmf_err()
  brcmfmac: replace WL_INFO() macro
  brcmfmac: remove WL_TRACE() macro
  brcmfmac: remove WL_SCAN() macro
  brcmfmac: remove WL_CONN() macro

Piotr Haber (1):
  brcmsmac: radio on led support

 drivers/net/wireless/brcm80211/brcmfmac/bcmsdh.c   |   15 +-
 .../net/wireless/brcm80211/brcmfmac/bcmsdh_sdmmc.c |   44 +-
 drivers/net/wireless/brcm80211/brcmfmac/dhd.h      |    1 -
 drivers/net/wireless/brcm80211/brcmfmac/dhd_bus.h  |   92 ++-
 drivers/net/wireless/brcm80211/brcmfmac/dhd_cdc.c  |   25 +-
 .../net/wireless/brcm80211/brcmfmac/dhd_common.c   |   40 +-
 drivers/net/wireless/brcm80211/brcmfmac/dhd_dbg.c  |    5 +-
 drivers/net/wireless/brcm80211/brcmfmac/dhd_dbg.h  |   24 +-
 .../net/wireless/brcm80211/brcmfmac/dhd_linux.c    |   57 +-
 drivers/net/wireless/brcm80211/brcmfmac/dhd_sdio.c |  205 ++---
 drivers/net/wireless/brcm80211/brcmfmac/fweh.c     |   84 +-
 drivers/net/wireless/brcm80211/brcmfmac/fweh.h     |  142 ++--
 drivers/net/wireless/brcm80211/brcmfmac/fwil.c     |   14 +-
 .../net/wireless/brcm80211/brcmfmac/sdio_chip.c    |   14 +-
 drivers/net/wireless/brcm80211/brcmfmac/usb.c      |   91 +--
 .../net/wireless/brcm80211/brcmfmac/wl_cfg80211.c  |  817 ++++++++++----------
 .../net/wireless/brcm80211/brcmfmac/wl_cfg80211.h  |   70 +-
 drivers/net/wireless/brcm80211/brcmsmac/Makefile   |    3 +-
 drivers/net/wireless/brcm80211/brcmsmac/aiutils.c  |    2 +-
 drivers/net/wireless/brcm80211/brcmsmac/led.c      |  103 +++
 drivers/net/wireless/brcm80211/brcmsmac/led.h      |   29 +
 .../net/wireless/brcm80211/brcmsmac/mac80211_if.c  |    5 +
 .../net/wireless/brcm80211/brcmsmac/mac80211_if.h  |    4 +
 23 files changed, 981 insertions(+), 905 deletions(-)
 create mode 100644 drivers/net/wireless/brcm80211/brcmsmac/led.c
 create mode 100644 drivers/net/wireless/brcm80211/brcmsmac/led.h

-- 
1.7.9.5



             reply	other threads:[~2012-12-05 14:26 UTC|newest]

Thread overview: 22+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2012-12-05 14:25 Arend van Spriel [this message]
2012-12-05 14:25 ` [PATCH 01/11] brcmfmac: rework bus interface Arend van Spriel
2012-12-05 14:25 ` [PATCH 02/11] brcmsmac: fix uninitialized variable warning on arm architecture Arend van Spriel
2012-12-05 14:25 ` [PATCH 03/11] brcmfmac: use one list of event defintions Arend van Spriel
2012-12-05 14:25 ` [PATCH 04/11] brcmsmac: radio on led support Arend van Spriel
2012-12-05 15:09   ` Hauke Mehrtens
2012-12-05 17:49     ` Arend van Spriel
2012-12-05 21:00     ` Arend van Spriel
2012-12-05 14:25 ` [PATCH 05/11] brcmfmac: error messages should not be suppressed Arend van Spriel
2012-12-05 14:41   ` Joe Perches
2012-12-05 21:28   ` [PATCH V2 " Arend van Spriel
2012-12-06  6:32     ` Joe Perches
2012-12-06  8:46       ` Arend van Spriel
2012-12-09 18:32         ` Joe Perches
2012-12-07  9:59       ` Arend van Spriel
2012-12-07  9:49     ` [PATCH V3 " Arend van Spriel
2012-12-05 14:25 ` [PATCH 06/11] brcmfmac: consolidate debug macros in wl_cfg80211 Arend van Spriel
2012-12-05 14:26 ` [PATCH 07/11] brcmfmac: replace WL_ERR() with brcmf_err() Arend van Spriel
2012-12-05 14:26 ` [PATCH 08/11] brcmfmac: replace WL_INFO() macro Arend van Spriel
2012-12-05 14:26 ` [PATCH 09/11] brcmfmac: remove WL_TRACE() macro Arend van Spriel
2012-12-05 14:26 ` [PATCH 10/11] brcmfmac: remove WL_SCAN() macro Arend van Spriel
2012-12-05 14:26 ` [PATCH 11/11] brcmfmac: remove WL_CONN() macro Arend van Spriel

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=1354717564-7183-1-git-send-email-arend@broadcom.com \
    --to=arend@broadcom.com \
    --cc=linux-wireless@vger.kernel.org \
    --cc=linville@tuxdriver.com \
    /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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.