linux-wireless.vger.kernel.org archive mirror
 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/19] brcm80211: cleanup and preparing for new chip
Date: Thu, 10 Nov 2011 20:30:15 +0100	[thread overview]
Message-ID: <1320953434-16859-2-git-send-email-arend@broadcom.com> (raw)
In-Reply-To: <1320953434-16859-1-git-send-email-arend@broadcom.com>

This series is more cleanup that is related to comments on the mainline
patch and preparing for adding a new chip for brcmfmac driver.

This patch series should apply on wireless-testing repository. There are
not other patches this series depends on.

Alwin Beukers (2):
  brcm80211: smac: don't modify sta parameters when adding sta
  brcm80211: smac: combine promiscuous mode functionality

Arend van Spriel (9):
  brcm80211: smac: fix endianess issue for OTP memory access
  brcm80211: smac: remove code under unused macro definitions
  brcm80211: smac: replace own access category definitions with
    mac80211 enum
  brcm80211: smac: remove duplicate definition of D11_PHY_HDR_LEN
  brcm80211: smac: remove usage of brcmu_pkttotlen
  brcm80211: util: use sk_buff_head in precedence queue functions
  brcm80211: util: move brcmu_pkttotlen() function to brcmfmac
  brcm80211: util: remove pointer traversal from brcmu_pkt_buf_free_skb
  brcm80211: fmac: add function to free the glom skb queue

Franky Lin (8):
  brcm80211: fmac: add iscoreup function for bcm4330 chip
  brcm80211: fmac: add corerev function for bcm4330 chip
  brcm80211: fmac: add coredisable function for bcm4330 chip
  brcm80211: fmac: add resetcore function for bcm4330 chip
  brcm80211: fmac: remove id retrieve code
  brcm80211: fmac: stop using hard coded firmware/nvram name
  brcm80211: fmac: remove PCMCIA core related code
  brcm80211: fmac: release bss struct returned from cfg80211_inform_bss

 drivers/net/wireless/brcm80211/Kconfig             |   14 ++
 drivers/net/wireless/brcm80211/brcmfmac/bcmchip.h  |   25 --
 .../net/wireless/brcm80211/brcmfmac/dhd_linux.c    |    2 -
 drivers/net/wireless/brcm80211/brcmfmac/dhd_sdio.c |   96 ++++-----
 .../net/wireless/brcm80211/brcmfmac/sdio_chip.c    |  234 +++++++++++++++----
 .../net/wireless/brcm80211/brcmfmac/sdio_chip.h    |   17 +-
 .../net/wireless/brcm80211/brcmfmac/wl_cfg80211.c  |   18 +-
 drivers/net/wireless/brcm80211/brcmsmac/ampdu.c    |    6 +-
 drivers/net/wireless/brcm80211/brcmsmac/channel.c  |  118 ----------
 .../net/wireless/brcm80211/brcmsmac/mac80211_if.c  |    7 -
 drivers/net/wireless/brcm80211/brcmsmac/main.c     |   86 ++++----
 drivers/net/wireless/brcm80211/brcmsmac/main.h     |    8 +-
 .../net/wireless/brcm80211/brcmsmac/phy/phy_cmn.c  |    8 -
 drivers/net/wireless/brcm80211/brcmsmac/pub.h      |    2 -
 drivers/net/wireless/brcm80211/brcmsmac/srom.c     |    2 +
 drivers/net/wireless/brcm80211/brcmutil/utils.c    |  167 ++++-----------
 .../net/wireless/brcm80211/include/brcmu_utils.h   |   19 +-
 17 files changed, 359 insertions(+), 470 deletions(-)
 delete mode 100644 drivers/net/wireless/brcm80211/brcmfmac/bcmchip.h

-- 
1.7.5.4



  reply	other threads:[~2011-11-10 19:30 UTC|newest]

Thread overview: 24+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2011-11-10 19:30 [PATCH 00/19] brcm80211: cleanup and preparing for new chip Arend van Spriel
2011-11-10 19:30 ` Arend van Spriel [this message]
2011-11-10 19:34   ` Arend van Spriel
2011-11-10 19:30 ` [PATCH 01/19] brcm80211: smac: fix endianess issue for OTP memory access Arend van Spriel
2011-11-10 19:30 ` [PATCH 02/19] brcm80211: smac: remove code under unused macro definitions Arend van Spriel
2011-11-10 19:30 ` [PATCH 03/19] brcm80211: smac: replace own access category definitions with mac80211 enum Arend van Spriel
2011-11-10 19:30 ` [PATCH 04/19] brcm80211: smac: remove duplicate definition of D11_PHY_HDR_LEN Arend van Spriel
2011-11-10 19:30 ` [PATCH 05/19] brcm80211: smac: don't modify sta parameters when adding sta Arend van Spriel
2011-11-10 19:30 ` [PATCH 06/19] brcm80211: fmac: add iscoreup function for bcm4330 chip Arend van Spriel
2011-11-10 19:30 ` [PATCH 07/19] brcm80211: fmac: add corerev " Arend van Spriel
2011-11-10 19:30 ` [PATCH 08/19] brcm80211: fmac: add coredisable " Arend van Spriel
2011-11-10 19:30 ` [PATCH 09/19] brcm80211: fmac: add resetcore " Arend van Spriel
2011-11-10 19:30 ` [PATCH 10/19] brcm80211: fmac: remove id retrieve code Arend van Spriel
2011-11-10 19:30 ` [PATCH 11/19] brcm80211: smac: remove usage of brcmu_pkttotlen Arend van Spriel
2011-11-10 19:30 ` [PATCH 12/19] brcm80211: util: use sk_buff_head in precedence queue functions Arend van Spriel
2011-11-10 19:30 ` [PATCH 13/19] brcm80211: smac: combine promiscuous mode functionality Arend van Spriel
2011-11-10 19:30 ` [PATCH 14/19] brcm80211: util: move brcmu_pkttotlen() function to brcmfmac Arend van Spriel
2011-11-10 19:30 ` [PATCH 15/19] brcm80211: util: remove pointer traversal from brcmu_pkt_buf_free_skb Arend van Spriel
2011-11-10 19:30 ` [PATCH 16/19] brcm80211: fmac: add function to free the glom skb queue Arend van Spriel
2011-11-10 19:30 ` [PATCH 17/19] brcm80211: fmac: stop using hard coded firmware/nvram name Arend van Spriel
2011-11-11 17:35   ` John W. Linville
2011-11-11 19:49     ` Franky Lin
2011-11-10 19:30 ` [PATCH 18/19] brcm80211: fmac: remove PCMCIA core related code Arend van Spriel
2011-11-10 19:30 ` [PATCH 19/19] brcm80211: fmac: release bss struct returned from cfg80211_inform_bss 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=1320953434-16859-2-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;
as well as URLs for NNTP newsgroup(s).