All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 00/19] checkpatch changes and brcmfmac cleanup
@ 2011-07-18 14:29 Arend van Spriel
  2011-07-18 14:29 ` [PATCH 01/19] staging: brcm80211: fix for checkpatch warnings in phy directory Arend van Spriel
                   ` (18 more replies)
  0 siblings, 19 replies; 26+ messages in thread
From: Arend van Spriel @ 2011-07-18 14:29 UTC (permalink / raw)
  To: gregkh; +Cc: Arend van Spriel, linux-wireless, devel

This series removes several checkpatch errors and warnings in the
drivers and several cleanup changes in brcmfmac driver.

Arend van Spriel (2):
  staging: brcm80211: replace simple_strtoul usage in brcmsmac
  staging: brcm80211: replace simple_strtoul usage in brcmfmac

Franky Lin (10):
  staging: brcm80211: remove private timeout functions in fullmac
  staging: brcm80211: move brcmf_mmc_suspend to sdio layer in fullmac
  staging: brcm80211: remove global wait queue head
    sdioh_spinwait_sleep
  staging: brcm80211: remove code for unsupported chip
  staging: brcm80211: get rid of sd debug message macro in fullmac
  staging: brcm80211: remove structure sdio_hc in brcmfmac
  staging: brcm80211: remove SDLX_MSG from brcmfmac
  staging: brcm80211: remove BRCMF_SD_* debug macros from brcmfmac
  staging: brcm80211: absorb brcmf_sdcard_attach into brcmf_sdio_probe
  staging: brcm80211: absorb brcmf_sdcard_detach into brcmf_sdio_remove

Roland Vossen (7):
  staging: brcm80211: fix for checkpatch warnings in phy directory
  staging: brcm80211: resolved checkpatch warnings in LCN phy
  staging: brcm80211: resolved checkpatch warnings in N phy
  staging: brcm80211: fixed build issue for big endian platforms
  staging: brcm80211: remove MIPS specific 'sync' instruction in
    fullmac
  staging: brcm80211: removed R_REG and OR_REG macro's from fullmac
  staging: brcm80211: removed global variable from sdio fullmac

 drivers/staging/brcm80211/brcmfmac/bcmsdh.c        |  246 +-
 drivers/staging/brcm80211/brcmfmac/bcmsdh_sdmmc.c  |  337 +-
 drivers/staging/brcm80211/brcmfmac/dhd.h           |   49 -
 drivers/staging/brcm80211/brcmfmac/dhd_common.c    |   27 +-
 drivers/staging/brcm80211/brcmfmac/dhd_linux.c     |   66 -
 drivers/staging/brcm80211/brcmfmac/dhd_sdio.c      |   97 +-
 drivers/staging/brcm80211/brcmfmac/sdio_host.h     |   30 +-
 drivers/staging/brcm80211/brcmfmac/wl_cfg80211.c   |    8 -
 drivers/staging/brcm80211/brcmsmac/dma.h           |    1 +
 drivers/staging/brcm80211/brcmsmac/main.c          |   16 +-
 drivers/staging/brcm80211/brcmsmac/phy/phy_cmn.c   |  244 +-
 drivers/staging/brcm80211/brcmsmac/phy/phy_hal.h   |   51 +-
 drivers/staging/brcm80211/brcmsmac/phy/phy_int.h   |  138 +-
 drivers/staging/brcm80211/brcmsmac/phy/phy_lcn.c   |  413 ++-
 drivers/staging/brcm80211/brcmsmac/phy/phy_n.c     | 3777 ++++++++++----------
 drivers/staging/brcm80211/brcmsmac/phy/phy_qmath.c |  136 +-
 .../staging/brcm80211/brcmsmac/phy/phytbl_lcn.c    | 1168 ++----
 drivers/staging/brcm80211/brcmsmac/phy/phytbl_n.c  |    3 +-
 drivers/staging/brcm80211/brcmsmac/phy/phytbl_n.h  |   24 +-
 drivers/staging/brcm80211/brcmsmac/types.h         |    8 +-
 20 files changed, 3195 insertions(+), 3644 deletions(-)

Cc: linux-wireless@vger.kernel.org
Cc: devel@linuxdriverproject.org
-- 
1.7.4.1



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

end of thread, other threads:[~2011-07-19 12:36 UTC | newest]

Thread overview: 26+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-07-18 14:29 [PATCH 00/19] checkpatch changes and brcmfmac cleanup Arend van Spriel
2011-07-18 14:29 ` [PATCH 01/19] staging: brcm80211: fix for checkpatch warnings in phy directory Arend van Spriel
2011-07-18 14:29 ` [PATCH 02/19] staging: brcm80211: resolved checkpatch warnings in LCN phy Arend van Spriel
2011-07-18 14:29 ` [PATCH 03/19] staging: brcm80211: resolved checkpatch warnings in N phy Arend van Spriel
2011-07-18 14:29 ` [PATCH 04/19] staging: brcm80211: fixed build issue for big endian platforms Arend van Spriel
2011-07-18 14:29 ` [PATCH 05/19] staging: brcm80211: remove MIPS specific 'sync' instruction in fullmac Arend van Spriel
2011-07-18 14:29 ` [PATCH 06/19] staging: brcm80211: removed R_REG and OR_REG macro's from fullmac Arend van Spriel
2011-07-18 14:29 ` [PATCH 07/19] staging: brcm80211: removed global variable from sdio fullmac Arend van Spriel
2011-07-18 14:29 ` [PATCH 08/19] staging: brcm80211: replace simple_strtoul usage in brcmsmac Arend van Spriel
2011-07-18 14:29 ` [PATCH 09/19] staging: brcm80211: remove private timeout functions in fullmac Arend van Spriel
2011-07-18 14:29 ` [PATCH 10/19] staging: brcm80211: move brcmf_mmc_suspend to sdio layer " Arend van Spriel
2011-07-18 14:29 ` [PATCH 11/19] staging: brcm80211: remove global wait queue head sdioh_spinwait_sleep Arend van Spriel
2011-07-18 14:29 ` [PATCH 12/19] staging: brcm80211: remove code for unsupported chip Arend van Spriel
2011-07-18 19:42   ` Dan Carpenter
2011-07-18 21:18     ` Franky Lin
2011-07-18 21:34       ` Pavel Roskin
2011-07-18 22:23         ` Franky Lin
2011-07-19  5:44         ` Dan Carpenter
2011-07-19 12:36           ` Pavel Roskin
2011-07-18 14:29 ` [PATCH 13/19] staging: brcm80211: get rid of sd debug message macro in fullmac Arend van Spriel
2011-07-18 14:30 ` [PATCH 14/19] staging: brcm80211: remove structure sdio_hc in brcmfmac Arend van Spriel
2011-07-18 14:30 ` [PATCH 15/19] staging: brcm80211: remove SDLX_MSG from brcmfmac Arend van Spriel
2011-07-18 14:30 ` [PATCH 16/19] staging: brcm80211: remove BRCMF_SD_* debug macros " Arend van Spriel
2011-07-18 14:30 ` [PATCH 17/19] staging: brcm80211: absorb brcmf_sdcard_attach into brcmf_sdio_probe Arend van Spriel
2011-07-18 14:30 ` [PATCH 18/19] staging: brcm80211: absorb brcmf_sdcard_detach into brcmf_sdio_remove Arend van Spriel
2011-07-18 14:30 ` [PATCH 19/19] staging: brcm80211: replace simple_strtoul usage in brcmfmac Arend van Spriel

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.