linux-wireless.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 00/14] staging: brcm80211: brcmfmac driver cleanup
@ 2011-08-12 13:34 Arend van Spriel
  2011-08-12 13:34 ` [PATCH 01/14] staging: brcm80211: use wait queues instead of semaphores in wl_cfg80211.c Arend van Spriel
                   ` (15 more replies)
  0 siblings, 16 replies; 45+ messages in thread
From: Arend van Spriel @ 2011-08-12 13:34 UTC (permalink / raw)
  To: gregkh; +Cc: devel, linux-wireless, Arend van Spriel

Several cleanup patches to reduce code for the brcmfmac driver and
get rid of a remaining checkpatch warning. The driver sources should
be clear from checkpatch issue now.

This series applies to staging-next and depends on the following patch set:

Message-ID: <1312811946-16713-1-git-send-email-arend@broadcom.com>

Arend van Spriel (1):
  staging: brcm80211: use wait queues instead of semaphores in
    wl_cfg80211.c

Franky Lin (13):
  staging: brcm80211: remove iovar IOV_BLOCKSIZE in brcmfmac
  staging: brcm80211: remove struct sdioh_info from brcmfmac
  staging: brcm80211: remove global var gInstance from brcmfmac
  staging: brcm80211: remove wext traces in fullmac
  staging: brcm80211: absorb brcmf_sdioh_iovar_op into
    brcmf_sdcard_iovar_op
  staging: brcm80211: absorb brcmf_sdioh_interrupt_register into
    brcmf_sdcard_intr_reg
  staging: brcm80211: absorb brcmf_sdioh_interrupt_deregister into
    brcmf_sdcard_intr_dereg
  staging: brcm80211: absorb brcmf_sdioh_abort into brcmf_sdcard_abort
  staging: brcm80211: remove dead code from dhd_sdio.c
  staging: brcm80211: remove wrapper functions in bcmsdh_sdmmc.c
  staging: brcm80211: remove unused parameter from data interface in
    fullmac
  staging: brcm80211: remove dead SDTEST code from fullmac
  staging: brcm80211: remove unused func parameter in wl_cfg80211 of
    fullmac

 drivers/staging/brcm80211/Kconfig                 |    2 -
 drivers/staging/brcm80211/brcmfmac/bcmsdh.c       |  197 +++++-
 drivers/staging/brcm80211/brcmfmac/bcmsdh_sdmmc.c |  555 ++++------------
 drivers/staging/brcm80211/brcmfmac/dhd.h          |   37 -
 drivers/staging/brcm80211/brcmfmac/dhd_sdio.c     |  744 ++-------------------
 drivers/staging/brcm80211/brcmfmac/sdio_host.h    |   80 +--
 drivers/staging/brcm80211/brcmfmac/wl_cfg80211.c  |   74 ++-
 drivers/staging/brcm80211/brcmfmac/wl_cfg80211.h  |    5 +-
 8 files changed, 409 insertions(+), 1285 deletions(-)

-- 
1.7.4.1



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

end of thread, other threads:[~2011-08-26 20:15 UTC | newest]

Thread overview: 45+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-08-12 13:34 [PATCH 00/14] staging: brcm80211: brcmfmac driver cleanup Arend van Spriel
2011-08-12 13:34 ` [PATCH 01/14] staging: brcm80211: use wait queues instead of semaphores in wl_cfg80211.c Arend van Spriel
2011-08-12 14:07   ` Rafał Miłecki
2011-08-12 16:44     ` Arend van Spriel
2011-08-12 18:55       ` Arend van Spriel
2011-08-12 18:59         ` Johannes Berg
2011-08-12 18:59       ` Franky Lin
2011-08-12 19:08         ` Larry Finger
2011-08-12 19:10           ` Arend van Spriel
2011-08-16 20:27         ` Rafał Miłecki
2011-08-12 19:05   ` [PATCHv2 " Arend van Spriel
2011-08-12 19:07     ` Arend van Spriel
2011-08-12 19:09       ` Arend van Spriel
2011-08-16 17:56         ` Dan Carpenter
2011-08-12 13:34 ` [PATCH 02/14] staging: brcm80211: remove iovar IOV_BLOCKSIZE in brcmfmac Arend van Spriel
2011-08-12 14:12   ` Rafał Miłecki
2011-08-12 16:37     ` Arend van Spriel
2011-08-12 20:02       ` Rafał Miłecki
2011-08-12 13:34 ` [PATCH 03/14] staging: brcm80211: remove struct sdioh_info from brcmfmac Arend van Spriel
2011-08-12 13:34 ` [PATCH 04/14] staging: brcm80211: remove global var gInstance " Arend van Spriel
2011-08-12 13:34 ` [PATCH 05/14] staging: brcm80211: remove wext traces in fullmac Arend van Spriel
2011-08-12 13:34 ` [PATCH 06/14] staging: brcm80211: absorb brcmf_sdioh_iovar_op into brcmf_sdcard_iovar_op Arend van Spriel
2011-08-12 13:34 ` [PATCH 07/14] staging: brcm80211: absorb brcmf_sdioh_interrupt_register into brcmf_sdcard_intr_reg Arend van Spriel
2011-08-12 14:31   ` Rafał Miłecki
2011-08-12 13:34 ` [PATCH 08/14] staging: brcm80211: absorb brcmf_sdioh_interrupt_deregister into brcmf_sdcard_intr_dereg Arend van Spriel
2011-08-12 13:34 ` [PATCH 09/14] staging: brcm80211: absorb brcmf_sdioh_abort into brcmf_sdcard_abort Arend van Spriel
2011-08-12 13:34 ` [PATCH 10/14] staging: brcm80211: remove dead code from dhd_sdio.c Arend van Spriel
2011-08-12 13:34 ` [PATCH 11/14] staging: brcm80211: remove wrapper functions in bcmsdh_sdmmc.c Arend van Spriel
2011-08-12 13:34 ` [PATCH 12/14] staging: brcm80211: remove unused parameter from data interface in fullmac Arend van Spriel
2011-08-12 13:35 ` [PATCH 13/14] staging: brcm80211: remove dead SDTEST code from fullmac Arend van Spriel
2011-08-12 13:35 ` [PATCH 14/14] staging: brcm80211: remove unused func parameter in wl_cfg80211 of fullmac Arend van Spriel
2011-08-12 14:02 ` [PATCH 00/14] staging: brcm80211: brcmfmac driver cleanup Rafał Miłecki
2011-08-12 15:14   ` Hauke Mehrtens
2011-08-12 15:43     ` Rafał Miłecki
2011-08-12 16:32   ` Arend van Spriel
2011-08-12 20:04     ` Rafał Miłecki
2011-08-13  7:47       ` Arend van Spriel
2011-08-13  8:30         ` Rafał Miłecki
2011-08-26  9:20       ` Rafał Miłecki
2011-08-26 17:31         ` Henry Ptasinski
2011-08-26 17:38           ` Jason
2011-08-26 17:44             ` Henry Ptasinski
2011-08-26 20:00               ` Jason
2011-08-26 20:15                 ` Henry Ptasinski
2011-08-23 20:07 ` Greg KH

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