All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 00/20] staging: brcm80211: 4th reaction to mainline patch #2
@ 2011-09-12 10:14 Roland Vossen
  2011-09-12 10:14 ` [PATCH 01/20] staging: brcm80211: stop using kthread for iscan status check in fullmac Roland Vossen
                   ` (20 more replies)
  0 siblings, 21 replies; 28+ messages in thread
From: Roland Vossen @ 2011-09-12 10:14 UTC (permalink / raw)
  To: gregkh; +Cc: devel, linux-wireless

Code cleanup items, both fullmac and softmac.

Arend van Spriel (2):
  staging: brcm80211: remove static function variable in brcmfmac
  staging: brcm80211: remove static variables from wl_cfg80211.c

Franky Lin (2):
  staging: brcm80211: stop using kthread for iscan status check in
    fullmac
  staging: brcm80211: remove static function declaration in wl_cfg80211

Roland Vossen (16):
  staging: brcm80211: cleaned up softmac types.h macro's
  staging: brcm80211: cleaned up brcmu_utils.h macro's
  staging: brcm80211: cleaned up brcmu_wifi.h macro's
  staging: brcm80211: cleaned up fullmac macro's
  staging: brcm80211: removed fullmac BRCMF_IOCTL_MAGIC support
  staging: brcm80211: removed fullmac function brcmf_sdcard_iovar_op()
  staging: brcm80211: removed unused encryption/security functionality
  staging: brcm80211: removed softmac 'tunable' functionality
  staging: brcm80211: cleaned up unused softmac struct members
  staging: brcm80211: removed softmac ratespec override functionality
  staging: brcm80211: removed unused softmac code after macro cleanup
  staging: brcm80211: removed unused softmac struct brcms_c_if
  staging: brcm80211: removed several unused softmac main.h struct
    members
  staging: brcm80211: removed unused softmac transmit power variables
  staging: brcm80211: removed more unused softmac main.h struct members
  staging: brcm80211: removed softmac files alloc.c/alloc.h

 drivers/staging/brcm80211/brcmfmac/bcmsdh.c       |  148 --
 drivers/staging/brcm80211/brcmfmac/bcmsdh_sdmmc.c |   34 -
 drivers/staging/brcm80211/brcmfmac/dhd.h          |   15 +-
 drivers/staging/brcm80211/brcmfmac/dhd_bus.h      |   15 +-
 drivers/staging/brcm80211/brcmfmac/dhd_cdc.c      |   17 +-
 drivers/staging/brcm80211/brcmfmac/dhd_common.c   |  297 +---
 drivers/staging/brcm80211/brcmfmac/dhd_linux.c    |   29 +-
 drivers/staging/brcm80211/brcmfmac/dhd_proto.h    |    7 -
 drivers/staging/brcm80211/brcmfmac/dhd_sdio.c     |  868 +-------
 drivers/staging/brcm80211/brcmfmac/sdio_host.h    |   22 -
 drivers/staging/brcm80211/brcmfmac/wl_cfg80211.c  | 2692 +++++++++------------
 drivers/staging/brcm80211/brcmfmac/wl_cfg80211.h  |   56 +-
 drivers/staging/brcm80211/brcmsmac/Makefile       |    1 -
 drivers/staging/brcm80211/brcmsmac/alloc.c        |  265 --
 drivers/staging/brcm80211/brcmsmac/alloc.h        |   19 -
 drivers/staging/brcm80211/brcmsmac/ampdu.c        |   11 +-
 drivers/staging/brcm80211/brcmsmac/channel.c      |   38 +-
 drivers/staging/brcm80211/brcmsmac/mac80211_if.c  |    4 +-
 drivers/staging/brcm80211/brcmsmac/main.c         |  463 ++--
 drivers/staging/brcm80211/brcmsmac/main.h         |  197 --
 drivers/staging/brcm80211/brcmsmac/phy/phy_cmn.c  |   32 +-
 drivers/staging/brcm80211/brcmsmac/phy/phy_lcn.c  |    7 +-
 drivers/staging/brcm80211/brcmsmac/phy/phy_n.c    |   17 +-
 drivers/staging/brcm80211/brcmsmac/pub.h          |  105 +-
 drivers/staging/brcm80211/brcmsmac/rate.c         |    5 +-
 drivers/staging/brcm80211/brcmsmac/stf.c          |   30 -
 drivers/staging/brcm80211/brcmsmac/types.h        |   64 +-
 drivers/staging/brcm80211/brcmutil/utils.c        |   67 -
 drivers/staging/brcm80211/brcmutil/wifi.c         |    4 +-
 drivers/staging/brcm80211/include/brcmu_utils.h   |  206 +-
 drivers/staging/brcm80211/include/brcmu_wifi.h    |   69 +-
 31 files changed, 1748 insertions(+), 4056 deletions(-)
 delete mode 100644 drivers/staging/brcm80211/brcmsmac/alloc.c
 delete mode 100644 drivers/staging/brcm80211/brcmsmac/alloc.h

-- 
1.7.4.1



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

end of thread, other threads:[~2011-09-12 14:56 UTC | newest]

Thread overview: 28+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2011-09-12 10:14 [PATCH 00/20] staging: brcm80211: 4th reaction to mainline patch #2 Roland Vossen
2011-09-12 10:14 ` [PATCH 01/20] staging: brcm80211: stop using kthread for iscan status check in fullmac Roland Vossen
2011-09-12 10:14 ` [PATCH 02/20] staging: brcm80211: cleaned up softmac types.h macro's Roland Vossen
2011-09-12 10:14 ` [PATCH 03/20] staging: brcm80211: cleaned up brcmu_utils.h macro's Roland Vossen
2011-09-12 10:14 ` [PATCH 04/20] staging: brcm80211: cleaned up brcmu_wifi.h macro's Roland Vossen
2011-09-12 10:14 ` [PATCH 05/20] staging: brcm80211: cleaned up fullmac macro's Roland Vossen
2011-09-12 10:14 ` [PATCH 06/20] staging: brcm80211: removed fullmac BRCMF_IOCTL_MAGIC support Roland Vossen
2011-09-12 10:14 ` [PATCH 07/20] staging: brcm80211: removed fullmac function brcmf_sdcard_iovar_op() Roland Vossen
2011-09-12 10:14 ` [PATCH 08/20] staging: brcm80211: remove static function variable in brcmfmac Roland Vossen
2011-09-12 10:14 ` [PATCH 09/20] staging: brcm80211: remove static variables from wl_cfg80211.c Roland Vossen
2011-09-12 13:06   ` Dan Carpenter
2011-09-12 13:34     ` Roland Vossen
2011-09-12 10:14 ` [PATCH 10/20] staging: brcm80211: removed unused encryption/security functionality Roland Vossen
2011-09-12 13:13   ` Dan Carpenter
2011-09-12 10:14 ` [PATCH 11/20] staging: brcm80211: removed softmac 'tunable' functionality Roland Vossen
2011-09-12 10:14 ` [PATCH 12/20] staging: brcm80211: cleaned up unused softmac struct members Roland Vossen
2011-09-12 10:14 ` [PATCH 13/20] staging: brcm80211: removed softmac ratespec override functionality Roland Vossen
2011-09-12 13:21   ` Dan Carpenter
2011-09-12 13:24     ` Dan Carpenter
2011-09-12 13:30       ` Roland Vossen
2011-09-12 10:14 ` [PATCH 14/20] staging: brcm80211: removed unused softmac code after macro cleanup Roland Vossen
2011-09-12 10:14 ` [PATCH 15/20] staging: brcm80211: removed unused softmac struct brcms_c_if Roland Vossen
2011-09-12 10:15 ` [PATCH 16/20] staging: brcm80211: removed several unused softmac main.h struct members Roland Vossen
2011-09-12 10:15 ` [PATCH 17/20] staging: brcm80211: removed unused softmac transmit power variables Roland Vossen
2011-09-12 10:15 ` [PATCH 18/20] staging: brcm80211: removed more unused softmac main.h struct members Roland Vossen
2011-09-12 10:15 ` [PATCH 19/20] staging: brcm80211: removed softmac files alloc.c/alloc.h Roland Vossen
2011-09-12 10:15 ` [PATCH 20/20] staging: brcm80211: remove static function declaration in wl_cfg80211 Roland Vossen
2011-09-12 14:56 ` [PATCH 00/20] staging: brcm80211: 4th reaction to mainline patch #2 Greg KH

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.