Linux wireless drivers development
 help / color / mirror / Atom feed
From: "Arend van Spriel" <arend@broadcom.com>
To: linville@tuxdriver.com
Cc: linux-wireless@vger.kernel.org, "Arend van Spriel" <arend@broadcom.com>
Subject: [PATCH 00/15] brcm80211: cleanup work on community feedback
Date: Tue, 18 Oct 2011 14:02:56 +0200	[thread overview]
Message-ID: <1318939391-19495-1-git-send-email-arend@broadcom.com> (raw)

Some more cleanup work is done based on comments from the mainline patch #3
and after reflector discussion about crc8 library usage for sprom data.

This series applies to the wireless-testing repository and does not depend
on pending patches as there are none for these drivers.

Alwin Beukers (2):
  brcm80211: cleanup defines in main.c
  brcm80211: removed duplicate defines

Arend van Spriel (8):
  brcm80211: smac: drop "40MHz intolerant" flag from HT capability info
  brcm80211: smac: remove obsolete srom variables from n-phy
  brcm80211: smac: avoid sprom endianess conversions for crc8 check
  brcm80211: smac: some local function made static in main.c
  brcm80211: smac: remove phy api bypass in rate.h
  brcm80211: util: move brcmu_pktfrombuf() function to brcmfmac
  brcm80211: util: remove function brcmu_format_hex() from brcmutil
  brcm80211: fmac: use sk_buff list for handling frames in receive path

Roland Vossen (5):
  brcm80211: smac: removed support for SROM rev < 8
  brcm80211: fmac: annotated little endian struct with _le
  brmc80211: fmac: reworked next_bss()
  brcm80211: fmac: changed two scan related structures
  brcm80211: smac: indicate severe problems to Mac80211

 drivers/net/wireless/brcm80211/brcmfmac/dhd.h      |   13 +-
 drivers/net/wireless/brcm80211/brcmfmac/dhd_sdio.c |   82 +++--
 .../net/wireless/brcm80211/brcmfmac/wl_cfg80211.c  |   23 +-
 .../net/wireless/brcm80211/brcmfmac/wl_cfg80211.h  |    9 -
 drivers/net/wireless/brcm80211/brcmsmac/aiutils.h  |   76 ----
 drivers/net/wireless/brcm80211/brcmsmac/dma.c      |    1 +
 .../net/wireless/brcm80211/brcmsmac/mac80211_if.c  |   14 +-
 .../net/wireless/brcm80211/brcmsmac/mac80211_if.h  |    1 +
 drivers/net/wireless/brcm80211/brcmsmac/main.c     |  398 ++++++++-----------
 .../net/wireless/brcm80211/brcmsmac/phy/phy_cmn.c  |    2 +-
 .../net/wireless/brcm80211/brcmsmac/phy/phy_int.h  |    5 -
 .../net/wireless/brcm80211/brcmsmac/phy/phy_n.c    |   38 +--
 drivers/net/wireless/brcm80211/brcmsmac/pmu.c      |    1 +
 drivers/net/wireless/brcm80211/brcmsmac/pub.h      |   32 --
 drivers/net/wireless/brcm80211/brcmsmac/rate.h     |    5 +-
 drivers/net/wireless/brcm80211/brcmsmac/srom.c     |  436 +++-----------------
 drivers/net/wireless/brcm80211/brcmsmac/srom.h     |    5 -
 drivers/net/wireless/brcm80211/brcmutil/utils.c    |   51 +---
 .../net/wireless/brcm80211/include/brcmu_utils.h   |   11 +-
 drivers/net/wireless/brcm80211/include/soc.h       |   12 +-
 20 files changed, 334 insertions(+), 881 deletions(-)

-- 
1.7.4.1



             reply	other threads:[~2011-10-18 12:03 UTC|newest]

Thread overview: 16+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2011-10-18 12:02 Arend van Spriel [this message]
2011-10-18 12:02 ` [PATCH 01/15] brcm80211: cleanup defines in main.c Arend van Spriel
2011-10-18 12:02 ` [PATCH 02/15] brcm80211: removed duplicate defines Arend van Spriel
2011-10-18 12:02 ` [PATCH 03/15] brcm80211: smac: drop "40MHz intolerant" flag from HT capability info Arend van Spriel
2011-10-18 12:03 ` [PATCH 04/15] brcm80211: smac: removed support for SROM rev < 8 Arend van Spriel
2011-10-18 12:03 ` [PATCH 05/15] brcm80211: fmac: annotated little endian struct with _le Arend van Spriel
2011-10-18 12:03 ` [PATCH 06/15] brmc80211: fmac: reworked next_bss() Arend van Spriel
2011-10-18 12:03 ` [PATCH 07/15] brcm80211: fmac: changed two scan related structures Arend van Spriel
2011-10-18 12:03 ` [PATCH 08/15] brcm80211: smac: indicate severe problems to Mac80211 Arend van Spriel
2011-10-18 12:03 ` [PATCH 09/15] brcm80211: smac: remove obsolete srom variables from n-phy Arend van Spriel
2011-10-18 12:03 ` [PATCH 10/15] brcm80211: smac: avoid sprom endianess conversions for crc8 check Arend van Spriel
2011-10-18 12:03 ` [PATCH 11/15] brcm80211: smac: some local function made static in main.c Arend van Spriel
2011-10-18 12:03 ` [PATCH 12/15] brcm80211: smac: remove phy api bypass in rate.h Arend van Spriel
2011-10-18 12:03 ` [PATCH 13/15] brcm80211: util: move brcmu_pktfrombuf() function to brcmfmac Arend van Spriel
2011-10-18 12:03 ` [PATCH 14/15] brcm80211: util: remove function brcmu_format_hex() from brcmutil Arend van Spriel
2011-10-18 12:03 ` [PATCH 15/15] brcm80211: fmac: use sk_buff list for handling frames in receive path Arend van Spriel

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=1318939391-19495-1-git-send-email-arend@broadcom.com \
    --to=arend@broadcom.com \
    --cc=linux-wireless@vger.kernel.org \
    --cc=linville@tuxdriver.com \
    /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