public inbox for linux-wireless@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH 00/28]  update for 3.3
@ 2011-11-10  0:39 Wey-Yi Guy
  2011-11-10  0:39 ` [PATCH 01/28] iwlagn: add P2P NoA to probe responses Wey-Yi Guy
                   ` (28 more replies)
  0 siblings, 29 replies; 32+ messages in thread
From: Wey-Yi Guy @ 2011-11-10  0:39 UTC (permalink / raw)
  To: linville; +Cc: linux-wireless, Wey-Yi Guy

We move all the mac80211 related functions into single file
We also fix number of P2P related issues and add P2P NoA probe responses
We adding more debug hook to improve debugging capabilities

Don Fry (6):
  iwlagn: move ucode_write_complete from priv to trans structure
  iwlagn: remove knowledge of ucode image location from upper layers
  iwlagn: push knowledge of ucode image lower down
  iwlagn: move ucode files out of the iwl_priv structure
  iwlagn: Remove dependence of iwl_priv from eeprom routines.
  iwlagn: move nvm_device_type from iwl_priv to iwl_trans

Emmanuel Grumbach (4):
  iwlwifi: fix unused label in iwl_send_cmd_sync
  iwlwifi: remove the use of the QOS debug flag
  iwlwifi: add debug information on queue stop / wake
  iwlwifi: fix an RCU sparse warning

Johannes Berg (6):
  iwlagn: add P2P NoA to probe responses
  iwlagn: fix NULL ptr deref when reprogramming sta w/o LQ
  iwlagn: use per-vif AC parameters
  iwlagn: explicitly program P2P QoS parameters
  iwlagn: convert remain-on-channel duration to TU
  iwlagn: don't always split remain-on-channel

Todd Previte (1):
  iwlwifi: Suppress noisy syslog messages when RF_KILL switch engaged

Venkataraman, Meenakshi (1):
  iwlwifi: fix rate-scaling algorithm for BT combo devices

Wey-Yi Guy (10):
  iwlwifi: two more SKUs for 6x05 series
  iwlagn: check for SMPS mode
  iwlwifi: remove un-supported SKUs
  iwlwifi: move all mac80211 related functions to one place
  iwlwifi: move more mac80211 callback function
  iwlwifi: move hw_scan into _mac80211 file
  iwlwifi: move station functions to mac80211
  iwlwifi: Move the core suspend function to iwl-agn-lib
  iwlwifi: set "echo" host command length
  iwlwifi: check status before send command

these patches are also available from wireless-next-2.6 branch on
 git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/iwlwifi.git

 drivers/net/wireless/iwlwifi/Makefile             |    2 +-
 drivers/net/wireless/iwlwifi/iwl-2000.c           |   20 -
 drivers/net/wireless/iwlwifi/iwl-6000.c           |   10 -
 drivers/net/wireless/iwlwifi/iwl-agn-lib.c        |  358 +++++
 drivers/net/wireless/iwlwifi/iwl-agn-rs.c         |    8 +-
 drivers/net/wireless/iwlwifi/iwl-agn-rx.c         |   49 +-
 drivers/net/wireless/iwlwifi/iwl-agn-rxon.c       |   13 +-
 drivers/net/wireless/iwlwifi/iwl-agn-sta.c        |   78 +-
 drivers/net/wireless/iwlwifi/iwl-agn-tx.c         |   16 +-
 drivers/net/wireless/iwlwifi/iwl-agn-ucode.c      |  154 ++-
 drivers/net/wireless/iwlwifi/iwl-agn.c            | 1544 +-------------------
 drivers/net/wireless/iwlwifi/iwl-agn.h            |   31 +-
 drivers/net/wireless/iwlwifi/iwl-cfg.h            |    6 -
 drivers/net/wireless/iwlwifi/iwl-core.c           |  307 +----
 drivers/net/wireless/iwlwifi/iwl-core.h           |   14 -
 drivers/net/wireless/iwlwifi/iwl-debug.h          |   19 +-
 drivers/net/wireless/iwlwifi/iwl-debugfs.c        |    8 +-
 drivers/net/wireless/iwlwifi/iwl-dev.h            |   34 +-
 drivers/net/wireless/iwlwifi/iwl-eeprom.c         |  142 +-
 drivers/net/wireless/iwlwifi/iwl-mac80211.c       | 1632 +++++++++++++++++++++
 drivers/net/wireless/iwlwifi/iwl-pci.c            |   20 +-
 drivers/net/wireless/iwlwifi/iwl-scan.c           |   47 +-
 drivers/net/wireless/iwlwifi/iwl-sv-open.c        |    7 +-
 drivers/net/wireless/iwlwifi/iwl-trans-pcie-int.h |   35 +-
 drivers/net/wireless/iwlwifi/iwl-trans-pcie-rx.c  |    2 +-
 drivers/net/wireless/iwlwifi/iwl-trans-pcie-tx.c  |   52 +-
 drivers/net/wireless/iwlwifi/iwl-trans-pcie.c     |   23 +-
 drivers/net/wireless/iwlwifi/iwl-trans.h          |   50 +-
 28 files changed, 2448 insertions(+), 2233 deletions(-)
 create mode 100644 drivers/net/wireless/iwlwifi/iwl-mac80211.c


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

end of thread, other threads:[~2011-11-10 15:10 UTC | newest]

Thread overview: 32+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-11-10  0:39 [PATCH 00/28] update for 3.3 Wey-Yi Guy
2011-11-10  0:39 ` [PATCH 01/28] iwlagn: add P2P NoA to probe responses Wey-Yi Guy
2011-11-10  8:05   ` Johannes Berg
2011-11-10  0:39 ` [PATCH 02/28] iwlwifi: Suppress noisy syslog messages when RF_KILL switch engaged Wey-Yi Guy
2011-11-10  0:39 ` [PATCH 03/28] iwlwifi: two more SKUs for 6x05 series Wey-Yi Guy
2011-11-10  0:39 ` [PATCH 04/28] iwlagn: check for SMPS mode Wey-Yi Guy
2011-11-10  0:39 ` [PATCH 05/28] iwlagn: fix NULL ptr deref when reprogramming sta w/o LQ Wey-Yi Guy
2011-11-10  0:39 ` [PATCH 06/28] iwlagn: use per-vif AC parameters Wey-Yi Guy
2011-11-10  8:05   ` Johannes Berg
2011-11-10  0:39 ` [PATCH 07/28] iwlwifi: remove un-supported SKUs Wey-Yi Guy
2011-11-10  0:39 ` [PATCH 08/28] iwlagn: move ucode_write_complete from priv to trans structure Wey-Yi Guy
2011-11-10  0:39 ` [PATCH 09/28] iwlagn: remove knowledge of ucode image location from upper layers Wey-Yi Guy
2011-11-10  0:39 ` [PATCH 10/28] iwlagn: push knowledge of ucode image lower down Wey-Yi Guy
2011-11-10  0:39 ` [PATCH 11/28] iwlagn: move ucode files out of the iwl_priv structure Wey-Yi Guy
2011-11-10  0:39 ` [PATCH 12/28] iwlwifi: move all mac80211 related functions to one place Wey-Yi Guy
2011-11-10  0:39 ` [PATCH 13/28] iwlagn: explicitly program P2P QoS parameters Wey-Yi Guy
2011-11-10  0:39 ` [PATCH 14/28] iwlwifi: move more mac80211 callback function Wey-Yi Guy
2011-11-10  0:39 ` [PATCH 15/28] iwlwifi: move hw_scan into _mac80211 file Wey-Yi Guy
2011-11-10  0:39 ` [PATCH 16/28] iwlwifi: move station functions to mac80211 Wey-Yi Guy
2011-11-10  0:39 ` [PATCH 17/28] iwlwifi: Move the core suspend function to iwl-agn-lib Wey-Yi Guy
2011-11-10  0:39 ` [PATCH 18/28] iwlwifi: set "echo" host command length Wey-Yi Guy
2011-11-10  0:39 ` [PATCH 19/28] iwlwifi: check status before send command Wey-Yi Guy
2011-11-10  0:39 ` [PATCH 20/28] iwlwifi: fix unused label in iwl_send_cmd_sync Wey-Yi Guy
2011-11-10  0:39 ` [PATCH 21/28] iwlagn: convert remain-on-channel duration to TU Wey-Yi Guy
2011-11-10  0:39 ` [PATCH 22/28] iwlagn: don't always split remain-on-channel Wey-Yi Guy
2011-11-10  0:39 ` [PATCH 23/28] iwlwifi: remove the use of the QOS debug flag Wey-Yi Guy
2011-11-10  0:39 ` [PATCH 24/28] iwlwifi: add debug information on queue stop / wake Wey-Yi Guy
2011-11-10  0:39 ` [PATCH 25/28] iwlwifi: fix an RCU sparse warning Wey-Yi Guy
2011-11-10  0:39 ` [PATCH 26/28] iwlwifi: fix rate-scaling algorithm for BT combo devices Wey-Yi Guy
2011-11-10  0:39 ` [PATCH 27/28] iwlagn: Remove dependence of iwl_priv from eeprom routines Wey-Yi Guy
2011-11-10  0:39 ` [PATCH 28/28] iwlagn: move nvm_device_type from iwl_priv to iwl_trans Wey-Yi Guy
2011-11-10 14:16 ` [PATCH 00/28] update for 3.3 Guy, Wey-Yi

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox