linux-wireless.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 00/17] fix mac80211 callback in brcmsmac and brcmfmac refactor
@ 2011-10-21 13:55 Arend van Spriel
  2011-10-21 13:55 ` [PATCH 01/17] brcm80211: fmac: allow wd timer to be disabled when bus down Arend van Spriel
                   ` (17 more replies)
  0 siblings, 18 replies; 19+ messages in thread
From: Arend van Spriel @ 2011-10-21 13:55 UTC (permalink / raw)
  To: linville; +Cc: linux-wireless, Arend van Spriel

Johannes Berg commented on our use of the start/stop callbacks in brcmsmac
and we changed those callbacks. In rfkill testing it revealed a problem which
has been fixed in this series as well.

The brcmfmac driver had some restructuring in preparation of USB support
for new devices.

This patch series applies to the wireless-testing repository and depends on the
series posted on Oct 18, 2011 with message id:

Message-ID: <1318939391-19495-1-git-send-email-arend@broadcom.com> 

Arend van Spriel (3):
  brcm80211: smac: rename buffer endianess conversion functions
  brcm80211: smac: use sk_buff list for handling frames in receive path
  brcm80211: smac: change buffer endianess convert function interface

Franky Lin (5):
  brcm80211: fmac: allow wd timer to be disabled when bus down
  brcm80211: fmac: use brcmf_del_if for all net devices
  brcm80211: fmac: use brcmf_add_if for all net devices
  brcm80211: fmac: store brcmf_if in net device private data
  brcm80211: fmac: remove state from brcmf_if in fullmac

Roland Vossen (9):
  brcm80211: smac: removed MPC related code
  brcm80211: smac: removed MPC related variables
  brcm80211: smac: removed down-on-watchdog MPC functionality
  brcm80211: smac: removed down-on-rf-kill functionality
  brcm80211: smac: bugfix for tx mute in brcms_b_init()
  brcm80211: smac: fixed inconsistency in transmit mute
  brcm80211: smac: modified Mac80211 callback interface
  brcm80211: smac: mute transmit on ops_start
  brcm80211: smac: changed check to confirm STA only support

 drivers/net/wireless/brcm80211/brcmfmac/dhd.h      |    5 +-
 .../net/wireless/brcm80211/brcmfmac/dhd_common.c   |    5 +-
 .../net/wireless/brcm80211/brcmfmac/dhd_linux.c    |  301 +++++++-------------
 drivers/net/wireless/brcm80211/brcmfmac/dhd_sdio.c |   15 +-
 drivers/net/wireless/brcm80211/brcmsmac/dma.c      |   38 ++-
 drivers/net/wireless/brcm80211/brcmsmac/dma.h      |    3 +-
 .../net/wireless/brcm80211/brcmsmac/mac80211_if.c  |  100 +++----
 .../net/wireless/brcm80211/brcmsmac/mac80211_if.h  |    1 +
 drivers/net/wireless/brcm80211/brcmsmac/main.c     |  219 ++------------
 drivers/net/wireless/brcm80211/brcmsmac/main.h     |   11 -
 drivers/net/wireless/brcm80211/brcmsmac/pub.h      |    4 +-
 drivers/net/wireless/brcm80211/brcmsmac/srom.c     |   33 +--
 drivers/net/wireless/brcm80211/include/defs.h      |    1 -
 13 files changed, 232 insertions(+), 504 deletions(-)

-- 
1.7.4.1



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

end of thread, other threads:[~2011-10-21 14:07 UTC | newest]

Thread overview: 19+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-10-21 13:55 [PATCH 00/17] fix mac80211 callback in brcmsmac and brcmfmac refactor Arend van Spriel
2011-10-21 13:55 ` [PATCH 01/17] brcm80211: fmac: allow wd timer to be disabled when bus down Arend van Spriel
2011-10-21 13:55 ` [PATCH 02/17] brcm80211: fmac: use brcmf_del_if for all net devices Arend van Spriel
2011-10-21 13:55 ` [PATCH 03/17] brcm80211: smac: removed MPC related code Arend van Spriel
2011-10-21 13:55 ` [PATCH 04/17] brcm80211: smac: removed MPC related variables Arend van Spriel
2011-10-21 13:55 ` [PATCH 05/17] brcm80211: smac: removed down-on-watchdog MPC functionality Arend van Spriel
2011-10-21 13:55 ` [PATCH 06/17] brcm80211: smac: removed down-on-rf-kill functionality Arend van Spriel
2011-10-21 13:55 ` [PATCH 07/17] brcm80211: smac: bugfix for tx mute in brcms_b_init() Arend van Spriel
2011-10-21 13:55 ` [PATCH 08/17] brcm80211: smac: fixed inconsistency in transmit mute Arend van Spriel
2011-10-21 13:55 ` [PATCH 09/17] brcm80211: smac: modified Mac80211 callback interface Arend van Spriel
2011-10-21 13:55 ` [PATCH 10/17] brcm80211: smac: mute transmit on ops_start Arend van Spriel
2011-10-21 13:55 ` [PATCH 11/17] brcm80211: smac: changed check to confirm STA only support Arend van Spriel
2011-10-21 13:55 ` [PATCH 12/17] brcm80211: smac: rename buffer endianess conversion functions Arend van Spriel
2011-10-21 13:55 ` [PATCH 13/17] brcm80211: smac: use sk_buff list for handling frames in receive path Arend van Spriel
2011-10-21 13:55 ` [PATCH 14/17] brcm80211: fmac: use brcmf_add_if for all net devices Arend van Spriel
2011-10-21 13:55 ` [PATCH 15/17] brcm80211: fmac: store brcmf_if in net device private data Arend van Spriel
2011-10-21 13:55 ` [PATCH 16/17] brcm80211: fmac: remove state from brcmf_if in fullmac Arend van Spriel
2011-10-21 13:55 ` [PATCH 17/17] brcm80211: smac: change buffer endianess convert function interface Arend van Spriel
2011-10-21 14:07 ` [PATCH 00/17] fix mac80211 callback in brcmsmac and brcmfmac refactor 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).