From: "Arend van Spriel" <arend@broadcom.com>
To: gregkh@suse.de
Cc: devel@linuxdriverproject.org, linux-wireless@vger.kernel.org,
"Arend van Spriel" <arend@broadcom.com>
Subject: [PATCH 00/26] various cleanup changes for brcmfmac and brcmsmac
Date: Tue, 4 Oct 2011 23:18:46 +0200 [thread overview]
Message-ID: <1317763152-17607-1-git-send-email-arend@broadcom.com> (raw)
Third attempt as the mailer somehow did not sent these outside the
Broadcom intranet. Another series of cleanup changes based on community
feedback received on the mainline patch (v2) as sent August 25, 2011.
This series is to be applied to the staging-next branch. There are no
pending patches that this series depend on.
Alwin Beukers (15):
staging: brcm80211: fixed checkpatch warnings
staging: brcm80211: removed accessor functions for band type and
etheraddress.
staging: brcm80211: fixed function returns
staging: brcm80211: made NULL ethernet address const
staging: brcm80211: removed empty brcms_c_reset_bmac_done callback
function
staging: brcm80211: decreased indentation level of
brcms_c_wme_setparams function
staging: brcm80211: removed redundant code from brcms_c_set_gmode
staging: brcm80211: cleanup of shared memory related wrapper
functions
staging: brcm80211: cleanup of transmit buffer size related wrapper
function
staging: brcm80211: cleanup of several wrapper functions
staging: brcm80211: removed unneeded call to
brcms_b_tx_fifo_suspended
staging: brcm80211: removed synchronisation of wlc->machwcap field
staging: brcm80211: remove brcms_b_dotxstatus wrapper function
staging: brcm80211: combined if statements
staging: brcm80211: remove N mode validation function
Arend van Spriel (4):
staging: brcm80211: remove setting ssn to zero upon AMPDU_TX_START
staging: brcm80211: remove filtering of received frames
staging: brcm80211: remove brcmu_bprintf and related functions
staging: brcm80211: replace brcmu_bitcount with hweight8
Franky Lin (3):
staging: brcm80211: clean up rtnl_lock in fullmac
staging: brcm80211: remove fullmac module_param for intr/poll mode
staging: brcm80211: stop using assigned thread priority in fullmac
Roland Vossen (4):
staging: brcm80211: cleaned up struct brcms_bss_cfg
staging: brcm80211: fullmac: fixed double #include
staging: brcm80211: softmac: added event tracing
staging: brcm80211: smac: fix for 64 bit systems
drivers/staging/brcm80211/brcmfmac/dhd_linux.c | 3 +
drivers/staging/brcm80211/brcmfmac/dhd_sdio.c | 72 +---
drivers/staging/brcm80211/brcmfmac/wl_cfg80211.c | 25 +-
drivers/staging/brcm80211/brcmsmac/Makefile | 3 +-
drivers/staging/brcm80211/brcmsmac/aiutils.c | 14 +-
drivers/staging/brcm80211/brcmsmac/ampdu.c | 14 +-
drivers/staging/brcm80211/brcmsmac/antsel.c | 4 +-
.../brcm80211/brcmsmac/brcms_trace_events.c | 23 +
.../brcm80211/brcmsmac/brcms_trace_events.h | 92 ++++
drivers/staging/brcm80211/brcmsmac/mac80211_if.c | 19 +-
drivers/staging/brcm80211/brcmsmac/mac80211_if.h | 2 +
drivers/staging/brcm80211/brcmsmac/main.c | 525 ++++----------------
drivers/staging/brcm80211/brcmsmac/main.h | 50 +--
drivers/staging/brcm80211/brcmsmac/nicpci.c | 3 +-
drivers/staging/brcm80211/brcmsmac/phy/phy_cmn.c | 7 +-
drivers/staging/brcm80211/brcmsmac/srom.c | 3 +-
drivers/staging/brcm80211/brcmsmac/stf.c | 10 +-
drivers/staging/brcm80211/brcmsmac/types.h | 1 -
drivers/staging/brcm80211/brcmsmac/ucode_loader.h | 4 +-
drivers/staging/brcm80211/brcmutil/utils.c | 34 --
drivers/staging/brcm80211/include/brcmu_utils.h | 15 -
21 files changed, 252 insertions(+), 671 deletions(-)
create mode 100644 drivers/staging/brcm80211/brcmsmac/brcms_trace_events.c
create mode 100644 drivers/staging/brcm80211/brcmsmac/brcms_trace_events.h
--
1.7.4.1
next reply other threads:[~2011-10-04 21:19 UTC|newest]
Thread overview: 28+ messages / expand[flat|nested] mbox.gz Atom feed top
2011-10-04 21:18 Arend van Spriel [this message]
2011-10-04 21:18 ` [PATCH 01/26] staging: brcm80211: cleaned up struct brcms_bss_cfg Arend van Spriel
2011-10-04 21:18 ` [PATCH 02/26] staging: brcm80211: remove setting ssn to zero upon AMPDU_TX_START Arend van Spriel
2011-10-04 21:18 ` [PATCH 03/26] staging: brcm80211: remove filtering of received frames Arend van Spriel
2011-10-04 21:18 ` [PATCH 04/26] staging: brcm80211: remove brcmu_bprintf and related functions Arend van Spriel
2011-10-04 21:18 ` [PATCH 05/26] staging: brcm80211: replace brcmu_bitcount with hweight8 Arend van Spriel
2011-10-04 21:18 ` [PATCH 06/26] staging: brcm80211: fullmac: fixed double #include Arend van Spriel
2011-10-04 21:18 ` [PATCH 07/26] staging: brcm80211: clean up rtnl_lock in fullmac Arend van Spriel
2011-10-04 21:18 ` [PATCH 08/26] staging: brcm80211: remove fullmac module_param for intr/poll mode Arend van Spriel
2011-10-04 21:18 ` [PATCH 09/26] staging: brcm80211: stop using assigned thread priority in fullmac Arend van Spriel
2011-10-04 21:18 ` [PATCH 10/26] staging: brcm80211: fixed checkpatch warnings Arend van Spriel
2011-10-04 21:18 ` [PATCH 11/26] staging: brcm80211: removed accessor functions for band type and etheraddress Arend van Spriel
2011-10-04 21:18 ` [PATCH 12/26] staging: brcm80211: fixed function returns Arend van Spriel
2011-10-04 21:18 ` [PATCH 13/26] staging: brcm80211: made NULL ethernet address const Arend van Spriel
2011-10-04 21:19 ` [PATCH 14/26] staging: brcm80211: removed empty brcms_c_reset_bmac_done callback function Arend van Spriel
2011-10-04 21:19 ` [PATCH 15/26] staging: brcm80211: decreased indentation level of brcms_c_wme_setparams function Arend van Spriel
2011-10-04 21:19 ` [PATCH 16/26] staging: brcm80211: removed redundant code from brcms_c_set_gmode Arend van Spriel
2011-10-04 21:19 ` [PATCH 17/26] staging: brcm80211: cleanup of shared memory related wrapper functions Arend van Spriel
2011-10-04 21:19 ` [PATCH 18/26] staging: brcm80211: cleanup of transmit buffer size related wrapper function Arend van Spriel
2011-10-04 21:19 ` [PATCH 19/26] staging: brcm80211: cleanup of several wrapper functions Arend van Spriel
2011-10-04 21:19 ` [PATCH 20/26] staging: brcm80211: removed unneeded call to brcms_b_tx_fifo_suspended Arend van Spriel
2011-10-04 21:19 ` [PATCH 21/26] staging: brcm80211: removed synchronisation of wlc->machwcap field Arend van Spriel
2011-10-04 21:19 ` [PATCH 22/26] staging: brcm80211: remove brcms_b_dotxstatus wrapper function Arend van Spriel
2011-10-04 21:19 ` [PATCH 23/26] staging: brcm80211: combined if statements Arend van Spriel
2011-10-04 21:19 ` [PATCH 24/26] staging: brcm80211: remove N mode validation function Arend van Spriel
2011-10-04 21:19 ` [PATCH 25/26] staging: brcm80211: softmac: added event tracing Arend van Spriel
2011-10-04 21:19 ` [PATCH 26/26] staging: brcm80211: smac: fix for 64 bit systems Arend van Spriel
2011-10-05 20:40 ` [PATCH 00/26] various cleanup changes for brcmfmac and brcmsmac Greg KH
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1317763152-17607-1-git-send-email-arend@broadcom.com \
--to=arend@broadcom.com \
--cc=devel@linuxdriverproject.org \
--cc=gregkh@suse.de \
--cc=linux-wireless@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
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).