linux-wireless.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v2 00/21] staging: brcm80211: mostly fullmac cleanup patches
@ 2011-07-05 20:05 Arend van Spriel
  2011-07-05 20:05 ` [PATCH v2 01/21] staging: brcm80211: removed last occurrences of bcmsdh/BCMSDH Arend van Spriel
                   ` (21 more replies)
  0 siblings, 22 replies; 24+ messages in thread
From: Arend van Spriel @ 2011-07-05 20:05 UTC (permalink / raw)
  To: gregkh; +Cc: devel, linux-wireless, Arend van Spriel

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



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

end of thread, other threads:[~2011-07-05 21:40 UTC | newest]

Thread overview: 24+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-07-05 20:05 [PATCH v2 00/21] staging: brcm80211: mostly fullmac cleanup patches Arend van Spriel
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

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).