linux-wireless.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 00/22] brcm80211: mainline patch related cleanup
@ 2011-10-12 18:51 Arend van Spriel
  2011-10-12 18:51 ` [PATCH 01/22] brcm80211: smac: removed redundant timer function parameters Arend van Spriel
                   ` (21 more replies)
  0 siblings, 22 replies; 32+ messages in thread
From: Arend van Spriel @ 2011-10-12 18:51 UTC (permalink / raw)
  To: linville; +Cc: linux-wireless, Arend van Spriel

The mainline patch (version 3) did receive some comments from
Johannes Berg and Hauke Mehrtens that we started working on. This
series contains several of those cleanup patches.

This series applies to the wireless-testing repository and depends
upon the linux-next merge patches as posted by Stephen Rothwell:

Message-ID: <20111012133600.256fea364b17e6bf96ee1081@canb.auug.org.au>
Message-ID: <20111012172954.4d5a638ef2a399b72bce5bf1@canb.auug.org.au>

There was a third patch from Stephen Rothwell to include linux/export.h
but that file is not yet in the wireless-testing repository so I did not
use that preparing this series:

Message-ID: <20111012173019.37dbde1f6797be48f8ad7c62@canb.auug.org.au>

Alwin Beukers (9):
  brcm80211: cleanup function prototypes
  brcm80211: removed unused functions
  brcm80211: moved power conversion functions
  brcm80211: moved function brcmu_chipname
  brcm80211: moved function brcmu_parse_tlvs
  brcm80211: moved function brcmu_chspec_malformed
  brcm80211: moved function brcmu_mkiovar
  brcm80211: moved function brcmu_format_flags
  brcm80211: removed file wifi.c

Arend van Spriel (10):
  brcm80211: remove sparse warning in fullmac debug function
  brcm80211: fix sparse endianess error in mac80211_if.c
  brcm80211: add endian annotation to packet filter structures
  brcm80211: rename variable in _brcmf_set_multicast_list()
  brcm80211: fix annotations in TOE configuration functions
  brcm80211: use endian annotations in scan related function
  brcm80211: use endian annotation for pmk related structure
  brcm80211: use endian annotations for assoc ie length request
  brcm80211: use endian annotation for roaming related parameters
  brcm80211: use endian annotation for scan time configuration

Roland Vossen (3):
  brcm80211: smac: removed redundant timer function parameters
  brcm80211: smac: decreased timer callback irq level
  brcm80211: fmac: fixed weird indentation

 drivers/net/wireless/brcm80211/brcmfmac/dhd.h      |   27 +-
 .../net/wireless/brcm80211/brcmfmac/dhd_common.c   |   71 +-
 .../net/wireless/brcm80211/brcmfmac/dhd_linux.c    |   55 +-
 drivers/net/wireless/brcm80211/brcmfmac/dhd_sdio.c |   11 +-
 .../net/wireless/brcm80211/brcmfmac/wl_cfg80211.c  |  332 ++-
 .../net/wireless/brcm80211/brcmfmac/wl_cfg80211.h  |    6 +-
 drivers/net/wireless/brcm80211/brcmsmac/channel.c  |   28 +-
 .../net/wireless/brcm80211/brcmsmac/mac80211_if.c  |   53 +-
 .../net/wireless/brcm80211/brcmsmac/mac80211_if.h  |   19 +-
 drivers/net/wireless/brcm80211/brcmsmac/main.c     | 3430 ++++++++++----------
 drivers/net/wireless/brcm80211/brcmsmac/main.h     |   84 -
 .../net/wireless/brcm80211/brcmsmac/phy/phy_cmn.c  |   12 +-
 drivers/net/wireless/brcm80211/brcmsmac/phy_shim.c |   13 +-
 drivers/net/wireless/brcm80211/brcmsmac/phy_shim.h |    9 +-
 drivers/net/wireless/brcm80211/brcmsmac/pub.h      |   49 +-
 drivers/net/wireless/brcm80211/brcmsmac/stf.c      |    2 -
 drivers/net/wireless/brcm80211/brcmutil/Makefile   |    3 +-
 drivers/net/wireless/brcm80211/brcmutil/utils.c    |  215 --
 drivers/net/wireless/brcm80211/brcmutil/wifi.c     |  136 -
 .../net/wireless/brcm80211/include/brcmu_utils.h   |   28 -
 .../net/wireless/brcm80211/include/brcmu_wifi.h    |   38 +-
 21 files changed, 2112 insertions(+), 2509 deletions(-)
 delete mode 100644 drivers/net/wireless/brcm80211/brcmutil/wifi.c

-- 
1.7.4.1



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

end of thread, other threads:[~2011-10-13 18:32 UTC | newest]

Thread overview: 32+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-10-12 18:51 [PATCH 00/22] brcm80211: mainline patch related cleanup Arend van Spriel
2011-10-12 18:51 ` [PATCH 01/22] brcm80211: smac: removed redundant timer function parameters Arend van Spriel
2011-10-12 18:51 ` [PATCH 02/22] brcm80211: smac: decreased timer callback irq level Arend van Spriel
2011-10-12 18:51 ` [PATCH 03/22] brcm80211: cleanup function prototypes Arend van Spriel
2011-10-12 18:51 ` [PATCH 04/22] brcm80211: remove sparse warning in fullmac debug function Arend van Spriel
2011-10-12 18:51 ` [PATCH 05/22] brcm80211: fix sparse endianess error in mac80211_if.c Arend van Spriel
2011-10-12 18:51 ` [PATCH 06/22] brcm80211: add endian annotation to packet filter structures Arend van Spriel
2011-10-12 18:51 ` [PATCH 07/22] brcm80211: rename variable in _brcmf_set_multicast_list() Arend van Spriel
2011-10-12 18:51 ` [PATCH 08/22] brcm80211: fix annotations in TOE configuration functions Arend van Spriel
2011-10-12 18:51 ` [PATCH 09/22] brcm80211: use endian annotations in scan related function Arend van Spriel
2011-10-12 18:51 ` [PATCH 10/22] brcm80211: use endian annotation for pmk related structure Arend van Spriel
2011-10-12 18:51 ` [PATCH 11/22] brcm80211: use endian annotations for assoc ie length request Arend van Spriel
2011-10-12 18:51 ` [PATCH 12/22] brcm80211: use endian annotation for roaming related parameters Arend van Spriel
2011-10-12 18:51 ` [PATCH 13/22] brcm80211: use endian annotation for scan time configuration Arend van Spriel
2011-10-12 18:51 ` [PATCH 14/22] brcm80211: fmac: fixed weird indentation Arend van Spriel
2011-10-12 18:51 ` [PATCH 15/22] brcm80211: removed unused functions Arend van Spriel
2011-10-12 18:51 ` [PATCH 16/22] brcm80211: moved power conversion functions Arend van Spriel
2011-10-12 18:51 ` [PATCH 17/22] brcm80211: moved function brcmu_chipname Arend van Spriel
2011-10-12 18:51 ` [PATCH 18/22] brcm80211: moved function brcmu_parse_tlvs Arend van Spriel
2011-10-12 18:51 ` [PATCH 19/22] brcm80211: moved function brcmu_chspec_malformed Arend van Spriel
2011-10-12 18:51 ` [PATCH 20/22] brcm80211: moved function brcmu_mkiovar Arend van Spriel
2011-10-12 18:51 ` [PATCH 21/22] brcm80211: moved function brcmu_format_flags Arend van Spriel
2011-10-12 18:51 ` [PATCH 22/22] brcm80211: removed file wifi.c Arend van Spriel
2011-10-12 19:13   ` Johannes Berg
2011-10-12 19:20     ` Arend van Spriel
2011-10-12 19:28       ` Johannes Berg
2011-10-12 21:54   ` Luis R. Rodriguez
2011-10-13  8:51     ` Arend van Spriel
2011-10-13 18:08       ` Luis R. Rodriguez
2011-10-13 18:23         ` John W. Linville
2011-10-13 18:32           ` Arend van Spriel
2011-10-13 18:27         ` 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).