linux-wireless.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: "Arend van Spriel" <arend@broadcom.com>
To: gregkh@suse.de
Cc: devel@linuxdriverproject.org, linux-wireless@vger.kernel.org,
	"Arend van Spriel" <arend@broadcom.com>
Subject: [PATCH v2 00/21] staging: brcm80211: mostly fullmac cleanup patches
Date: Tue, 5 Jul 2011 22:05:56 +0200	[thread overview]
Message-ID: <1309896377-4425-1-git-send-email-arend@broadcom.com> (raw)

This series are patches from the series 'more code cleanup and bug fixed' that
failed to apply.

Arend van Spriel (5):
  staging: brcm80211: rename function variables
  staging: brcm80211: rename dhd_bus structure and functions
  staging: brcm80211: rename structures and variables in wl_cfg80211.c
  staging: brcm80211: rename pointer conversion macros in wl_cfg80211.h
  staging: brcm80211: rename external function in wl_cfg80211.c

Roland Vossen (16):
  staging: brcm80211: removed last occurrences of bcmsdh/BCMSDH
  staging: brcm80211: sdh related code cleanup
  staging: brcm80211: removed brcmf_sdioh_interrupt_pending()
  staging: brcm80211: removed brcmf_sdioh_reset()
  staging: brcm80211: removed brcmf_sdioh_start() and
    brcmf_sdioh_stop()
  staging: brcm80211: removed file sdiovar.h
  staging: brcm80211: further cleaned fullmac header files
  staging: brcm80211: removed last typedefs from fullmac
  staging: brcm80211: removed unused code and definitions from fullmac
  staging: brcm80211: fullmac register access macro's take u32 instead
    of pointers
  staging: brcm80211: replaced macro R_SDREG by function r_sdreg()
  staging: brcm80211: replaced macro W_SDREG by function w_sdreg()
  staging: brcm80211: got rid of redundant member 'regs' of struct
    dhd_bus
  staging: brcm80211: removed last amd64 compiler warnings
  staging: brcm80211: W_REG macro cleanup in fullmac SDIO
  staging: brcm80211: removed unused definitions from dhd_sdio.c

 drivers/staging/brcm80211/brcmfmac/bcmsdbus.h      |  131 ++-
 drivers/staging/brcm80211/brcmfmac/bcmsdh.c        |  403 +++----
 drivers/staging/brcm80211/brcmfmac/bcmsdh_linux.c  |   83 +-
 drivers/staging/brcm80211/brcmfmac/bcmsdh_sdmmc.c  |   91 +-
 drivers/staging/brcm80211/brcmfmac/bcmsdh_sdmmc.h  |  138 ---
 .../brcm80211/brcmfmac/bcmsdh_sdmmc_linux.c        |   32 +-
 drivers/staging/brcm80211/brcmfmac/dhd.h           |  104 +-
 drivers/staging/brcm80211/brcmfmac/dhd_bus.h       |   32 +-
 drivers/staging/brcm80211/brcmfmac/dhd_cdc.c       |  123 +-
 drivers/staging/brcm80211/brcmfmac/dhd_common.c    |   32 +-
 drivers/staging/brcm80211/brcmfmac/dhd_linux.c     |  140 +--
 drivers/staging/brcm80211/brcmfmac/dhd_proto.h     |    5 -
 drivers/staging/brcm80211/brcmfmac/dhd_sdio.c      | 1262 ++++++++++---------
 drivers/staging/brcm80211/brcmfmac/dngl_stats.h    |    4 +-
 drivers/staging/brcm80211/brcmfmac/sbsdio.h        |   96 --
 drivers/staging/brcm80211/brcmfmac/sdio_host.h     |  153 +--
 drivers/staging/brcm80211/brcmfmac/sdiovar.h       |   38 -
 drivers/staging/brcm80211/brcmfmac/wl_cfg80211.c   | 1301 ++++++++++----------
 drivers/staging/brcm80211/brcmfmac/wl_cfg80211.h   |  140 +--
 19 files changed, 1926 insertions(+), 2382 deletions(-)
 delete mode 100644 drivers/staging/brcm80211/brcmfmac/bcmsdh_sdmmc.h
 delete mode 100644 drivers/staging/brcm80211/brcmfmac/sdiovar.h

-- 
1.7.4.1



             reply	other threads:[~2011-07-05 20:06 UTC|newest]

Thread overview: 24+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2011-07-05 20:05 Arend van Spriel [this message]
2011-07-05 20:05 ` [PATCH v2 01/21] staging: brcm80211: removed last occurrences of bcmsdh/BCMSDH Arend van Spriel
2011-07-05 20:05 ` [PATCH v2 02/21] staging: brcm80211: sdh related code cleanup Arend van Spriel
2011-07-05 20:05 ` [PATCH v2 03/21] staging: brcm80211: removed brcmf_sdioh_interrupt_pending() Arend van Spriel
2011-07-05 20:06 ` [PATCH v2 04/21] staging: brcm80211: removed brcmf_sdioh_reset() Arend van Spriel
2011-07-05 20:06 ` [PATCH v2 05/21] staging: brcm80211: removed brcmf_sdioh_start() and brcmf_sdioh_stop() Arend van Spriel
2011-07-05 20:06 ` [PATCH v2 06/21] staging: brcm80211: removed file sdiovar.h Arend van Spriel
2011-07-05 20:06 ` [PATCH v2 07/21] staging: brcm80211: further cleaned fullmac header files Arend van Spriel
2011-07-05 20:06 ` [PATCH v2 08/21] staging: brcm80211: rename function variables Arend van Spriel
2011-07-05 20:06 ` [PATCH v2 09/21] staging: brcm80211: rename dhd_bus structure and functions Arend van Spriel
2011-07-05 20:06 ` [PATCH v2 10/21] staging: brcm80211: removed last typedefs from fullmac Arend van Spriel
2011-07-05 20:06 ` [PATCH v2 11/21] staging: brcm80211: removed unused code and definitions " Arend van Spriel
2011-07-05 20:06 ` [PATCH v2 12/21] staging: brcm80211: fullmac register access macro's take u32 instead of pointers Arend van Spriel
2011-07-05 20:06 ` [PATCH v2 13/21] staging: brcm80211: replaced macro R_SDREG by function r_sdreg() Arend van Spriel
2011-07-05 20:06 ` [PATCH v2 14/21] staging: brcm80211: replaced macro W_SDREG by function w_sdreg() Arend van Spriel
2011-07-05 20:06 ` [PATCH v2 15/21] staging: brcm80211: got rid of redundant member 'regs' of struct dhd_bus Arend van Spriel
2011-07-05 20:06 ` [PATCH v2 16/21] staging: brcm80211: removed last amd64 compiler warnings Arend van Spriel
2011-07-05 20:06 ` [PATCH v2 17/21] staging: brcm80211: W_REG macro cleanup in fullmac SDIO Arend van Spriel
2011-07-05 20:06 ` [PATCH v2 18/21] staging: brcm80211: removed unused definitions from dhd_sdio.c Arend van Spriel
2011-07-05 20:06 ` [PATCH v2 19/21] staging: brcm80211: rename structures and variables in wl_cfg80211.c Arend van Spriel
2011-07-05 20:06 ` [PATCH v2 20/21] staging: brcm80211: rename pointer conversion macros in wl_cfg80211.h Arend van Spriel
2011-07-05 20:06 ` [PATCH v2 21/21] staging: brcm80211: rename external function in wl_cfg80211.c Arend van Spriel
2011-07-05 20:38 ` [PATCH v2 00/21] staging: brcm80211: mostly fullmac cleanup patches Rafał Miłecki
2011-07-05 21:40   ` 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=1309896377-4425-1-git-send-email-arend@broadcom.com \
    --to=arend@broadcom.com \
    --cc=devel@linuxdriverproject.org \
    --cc=gregkh@suse.de \
    --cc=linux-wireless@vger.kernel.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).