linux-wireless.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 00/18] brcmfmac: sdio rework and msgbuf protocol changes
@ 2013-12-12 10:58 Arend van Spriel
  2013-12-12 10:58 ` [PATCH 01/18] brcmfmac: add missing curly braces in brcmf_fws_txstatus_suppressed() Arend van Spriel
                   ` (18 more replies)
  0 siblings, 19 replies; 20+ messages in thread
From: Arend van Spriel @ 2013-12-12 10:58 UTC (permalink / raw)
  To: John W. Linville; +Cc: linux-wireless, Arend van Spriel

This series consists mostly of cleanup in SDIO driver code. Other changes
are preparing to new firmware protocol called msgbuf, which is intended
for PCIe fullmac devices.

Arend van Spriel (14):
  brcmfmac: add missing curly braces in brcmf_fws_txstatus_suppressed()
  brcmfmac: combine bcmsdh source files into one
  brcmfmac: remove unnecessary function prototypes
  brcmfmac: remove unused struct brcmf_sdio_dev::func_cis_ptr attribute
  brcmfmac: use sdio functions to enable/disable F2
  brcmfmac: remove brcmf_sdio_regrw_helper() from header file
  brcmfmac: remove regs parameter from sdio probe functions
  brcmfmac: get rid of some void pointer parameters
  brcmfmac: remove brcmf_sdio_wdtimer_enable() function
  brcmfmac: use consistent function names in bcmsdh.c
  brcmfmac: reduce function parameters in sdio send/receive calls
  brcmfmac: use consistent function names in dhd_sdio.c
  brcmfmac: remove brcmf_sdio_disconnect() function
  brcmfmac: clarify struct brcmf_sdio_dev::func[0] reference

Hante Meuleman (4):
  brcmfmac: Move common BCDC code in single function.
  brcmfmac: Fix hex dump for FWIL.
  brcmfmac: Add definition of new protocol layer msgbuf.
  brcmfmac: Combine protocol push hdr and bus txdata.

 drivers/net/wireless/brcm80211/brcmfmac/Makefile   |    1 -
 drivers/net/wireless/brcm80211/brcmfmac/bcdc.c     |   79 +--
 drivers/net/wireless/brcm80211/brcmfmac/bcmsdh.c   |  629 ++++++++++++++---
 .../net/wireless/brcm80211/brcmfmac/bcmsdh_sdmmc.c |  552 ---------------
 drivers/net/wireless/brcm80211/brcmfmac/dhd_bus.h  |    8 +
 drivers/net/wireless/brcm80211/brcmfmac/dhd_sdio.c |  740 +++++++++-----------
 drivers/net/wireless/brcm80211/brcmfmac/fwil.c     |   12 +-
 drivers/net/wireless/brcm80211/brcmfmac/fwsignal.c |   41 +-
 drivers/net/wireless/brcm80211/brcmfmac/proto.c    |    2 +-
 drivers/net/wireless/brcm80211/brcmfmac/proto.h    |   14 +-
 .../net/wireless/brcm80211/brcmfmac/sdio_chip.c    |  296 ++++----
 .../net/wireless/brcm80211/brcmfmac/sdio_chip.h    |    2 +-
 .../net/wireless/brcm80211/brcmfmac/sdio_host.h    |   82 +--
 drivers/net/wireless/brcm80211/brcmfmac/usb.c      |    1 +
 14 files changed, 1109 insertions(+), 1350 deletions(-)
 delete mode 100644 drivers/net/wireless/brcm80211/brcmfmac/bcmsdh_sdmmc.c

-- 
1.7.10.4


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

end of thread, other threads:[~2013-12-13  9:02 UTC | newest]

Thread overview: 20+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-12-12 10:58 [PATCH 00/18] brcmfmac: sdio rework and msgbuf protocol changes Arend van Spriel
2013-12-12 10:58 ` [PATCH 01/18] brcmfmac: add missing curly braces in brcmf_fws_txstatus_suppressed() Arend van Spriel
2013-12-12 10:58 ` [PATCH 02/18] brcmfmac: combine bcmsdh source files into one Arend van Spriel
2013-12-12 10:58 ` [PATCH 03/18] brcmfmac: remove unnecessary function prototypes Arend van Spriel
2013-12-12 10:58 ` [PATCH 04/18] brcmfmac: remove unused struct brcmf_sdio_dev::func_cis_ptr attribute Arend van Spriel
2013-12-12 10:58 ` [PATCH 05/18] brcmfmac: use sdio functions to enable/disable F2 Arend van Spriel
2013-12-12 10:58 ` [PATCH 06/18] brcmfmac: remove brcmf_sdio_regrw_helper() from header file Arend van Spriel
2013-12-12 10:58 ` [PATCH 07/18] brcmfmac: remove regs parameter from sdio probe functions Arend van Spriel
2013-12-12 10:58 ` [PATCH 08/18] brcmfmac: get rid of some void pointer parameters Arend van Spriel
2013-12-12 10:58 ` [PATCH 09/18] brcmfmac: remove brcmf_sdio_wdtimer_enable() function Arend van Spriel
2013-12-12 10:58 ` [PATCH 10/18] brcmfmac: use consistent function names in bcmsdh.c Arend van Spriel
2013-12-12 10:58 ` [PATCH 11/18] brcmfmac: reduce function parameters in sdio send/receive calls Arend van Spriel
2013-12-12 10:59 ` [PATCH 12/18] brcmfmac: Move common BCDC code in single function Arend van Spriel
2013-12-12 10:59 ` [PATCH 13/18] brcmfmac: Fix hex dump for FWIL Arend van Spriel
2013-12-12 10:59 ` [PATCH 14/18] brcmfmac: Add definition of new protocol layer msgbuf Arend van Spriel
2013-12-12 10:59 ` [PATCH 15/18] brcmfmac: Combine protocol push hdr and bus txdata Arend van Spriel
2013-12-12 10:59 ` [PATCH 16/18] brcmfmac: use consistent function names in dhd_sdio.c Arend van Spriel
2013-12-12 10:59 ` [PATCH 17/18] brcmfmac: remove brcmf_sdio_disconnect() function Arend van Spriel
2013-12-12 10:59 ` [PATCH 18/18] brcmfmac: clarify struct brcmf_sdio_dev::func[0] reference Arend van Spriel
2013-12-13  9:02 ` [PATCH 00/18] brcmfmac: sdio rework and msgbuf protocol changes 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).