linux-wireless.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 00/27] update for 3.2
@ 2011-09-15 18:46 Wey-Yi Guy
  2011-09-15 18:46 ` [PATCH 01/27] iwlagn: warn about buggy fw that doesn't set SEQ_RX_FRAME Wey-Yi Guy
                   ` (26 more replies)
  0 siblings, 27 replies; 36+ messages in thread
From: Wey-Yi Guy @ 2011-09-15 18:46 UTC (permalink / raw)
  To: linville; +Cc: linux-wireless, Wey-Yi Guy

We adding more documents for the transport layer work
We continue the transport layer work to make it better and cleaner
We also continue doing the cleanup work after driver split

Don Fry (1):
  iwlagn: replace beacon_time_fsf_bits variable with #define

Emmanuel Grumbach (9):
  iwlagn: warn about buggy fw that doesn't set SEQ_RX_FRAME
  iwlagn: unmap cmd queue's tfds as BIDI
  iwlagn: free the Tx cmd when a non empty Tx queue is freed
  iwlagn: move iwl_stop / wake_queue to the upper layer
  iwlagn: use enum iwl_rxon_context_id instead of u8
  iwlagn: document the bus layer API
  iwlagn: add documentation to the transport layer
  iwlagn: beautify the code - remove uneeded line break
  iwlagn: provide data after WARN_ON

Fry, Donald H (2):
  iwlagn: fix modinfo display for 135 ucode.
  iwlagn: simplify chain_noise_num_beacons indirection

Johannes Berg (9):
  iwlagn: move PCI-E transport files
  iwlagn: generically provide iwl_trans_send_cmd_pdu
  iwlagn: Makefile whitespace cleanup
  iwlagn: clean up PM code
  iwlagn: rename iwl-pci.h to iwl-cfg.h
  iwlagn: remove unused function declarations
  iwlagn: move sysfs files to debugfs
  iwlagn: remove drvdata support from bus layer
  iwlagn: do not use interruptible waits

Wey-Yi Guy (6):
  iwlagn: New SKU for 6005 SFF
  iwlagn: merge eeprom access into single file
  iwlagn: add support for v2 of temperature offset calibration
  iwlagn: use iwl_eeprom_calib_hdr structure
  iwlagn: fix stack corruption for temperature offset v2
  iwlagn: signedness bug

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

Because the file system problem, all the patches are not push into 
git.kernel.org yet. I will push as soon as the file system issue addressed

 drivers/net/wireless/iwlwifi/Makefile             |   23 +-
 drivers/net/wireless/iwlwifi/iwl-1000.c           |    5 +-
 drivers/net/wireless/iwlwifi/iwl-2000.c           |   12 +-
 drivers/net/wireless/iwlwifi/iwl-5000-hw.h        |    4 +-
 drivers/net/wireless/iwlwifi/iwl-5000.c           |    7 +-
 drivers/net/wireless/iwlwifi/iwl-6000.c           |    7 +-
 drivers/net/wireless/iwlwifi/iwl-agn-calib.c      |   21 +-
 drivers/net/wireless/iwlwifi/iwl-agn-eeprom.c     |  299 ---
 drivers/net/wireless/iwlwifi/iwl-agn-lib.c        |    6 +-
 drivers/net/wireless/iwlwifi/iwl-agn-tt.c         |    4 +-
 drivers/net/wireless/iwlwifi/iwl-agn-tx.c         |    2 +-
 drivers/net/wireless/iwlwifi/iwl-agn-ucode.c      |   55 +-
 drivers/net/wireless/iwlwifi/iwl-agn.c            |  148 +--
 drivers/net/wireless/iwlwifi/iwl-bus.h            |   72 +-
 drivers/net/wireless/iwlwifi/iwl-cfg.h            |  115 ++
 drivers/net/wireless/iwlwifi/iwl-commands.h       |    8 +
 drivers/net/wireless/iwlwifi/iwl-core.c           |   53 +-
 drivers/net/wireless/iwlwifi/iwl-core.h           |    3 +-
 drivers/net/wireless/iwlwifi/iwl-debugfs.c        |   72 +-
 drivers/net/wireless/iwlwifi/iwl-dev.h            |    2 +
 drivers/net/wireless/iwlwifi/iwl-eeprom.c         |  239 +++-
 drivers/net/wireless/iwlwifi/iwl-eeprom.h         |   10 +-
 drivers/net/wireless/iwlwifi/iwl-pci.c            |   22 +-
 drivers/net/wireless/iwlwifi/iwl-pci.h            |  116 --
 drivers/net/wireless/iwlwifi/iwl-rx.c             |    2 +-
 drivers/net/wireless/iwlwifi/iwl-shared.h         |  140 +-
 drivers/net/wireless/iwlwifi/iwl-trans-int-pcie.h |  454 -----
 drivers/net/wireless/iwlwifi/iwl-trans-pcie-int.h |  448 +++++
 drivers/net/wireless/iwlwifi/iwl-trans-pcie-rx.c  | 1424 +++++++++++++++
 drivers/net/wireless/iwlwifi/iwl-trans-pcie-tx.c  | 1153 ++++++++++++
 drivers/net/wireless/iwlwifi/iwl-trans-pcie.c     | 1988 +++++++++++++++++++++
 drivers/net/wireless/iwlwifi/iwl-trans-rx-pcie.c  | 1412 ---------------
 drivers/net/wireless/iwlwifi/iwl-trans-tx-pcie.c  | 1158 ------------
 drivers/net/wireless/iwlwifi/iwl-trans.c          | 1926 +--------------------
 drivers/net/wireless/iwlwifi/iwl-trans.h          |   27 +-
 35 files changed, 5762 insertions(+), 5675 deletions(-)
 delete mode 100644 drivers/net/wireless/iwlwifi/iwl-agn-eeprom.c
 create mode 100644 drivers/net/wireless/iwlwifi/iwl-cfg.h
 delete mode 100644 drivers/net/wireless/iwlwifi/iwl-pci.h
 delete mode 100644 drivers/net/wireless/iwlwifi/iwl-trans-int-pcie.h
 create mode 100644 drivers/net/wireless/iwlwifi/iwl-trans-pcie-int.h
 create mode 100644 drivers/net/wireless/iwlwifi/iwl-trans-pcie-rx.c
 create mode 100644 drivers/net/wireless/iwlwifi/iwl-trans-pcie-tx.c
 create mode 100644 drivers/net/wireless/iwlwifi/iwl-trans-pcie.c
 delete mode 100644 drivers/net/wireless/iwlwifi/iwl-trans-rx-pcie.c
 delete mode 100644 drivers/net/wireless/iwlwifi/iwl-trans-tx-pcie.c


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

end of thread, other threads:[~2011-09-15 23:22 UTC | newest]

Thread overview: 36+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-09-15 18:46 [PATCH 00/27] update for 3.2 Wey-Yi Guy
2011-09-15 18:46 ` [PATCH 01/27] iwlagn: warn about buggy fw that doesn't set SEQ_RX_FRAME Wey-Yi Guy
2011-09-15 18:46 ` [PATCH 02/27] iwlagn: unmap cmd queue's tfds as BIDI Wey-Yi Guy
2011-09-15 18:46 ` [PATCH 03/27] iwlagn: free the Tx cmd when a non empty Tx queue is freed Wey-Yi Guy
2011-09-15 18:46 ` [PATCH 04/27] iwlagn: move iwl_stop / wake_queue to the upper layer Wey-Yi Guy
2011-09-15 18:46 ` [PATCH 05/27] iwlagn: use enum iwl_rxon_context_id instead of u8 Wey-Yi Guy
2011-09-15 18:46 ` [PATCH 06/27] iwlagn: document the bus layer API Wey-Yi Guy
2011-09-15 18:46 ` [PATCH 07/27] iwlagn: add documentation to the transport layer Wey-Yi Guy
2011-09-15 18:46 ` [PATCH 08/27] iwlagn: beautify the code - remove uneeded line break Wey-Yi Guy
2011-09-15 19:37   ` Joe Perches
2011-09-15 18:53     ` Guy, Wey-Yi
2011-09-15 19:47       ` [PATCH] iwlagn: Convert kzalloc to kcalloc Joe Perches
2011-09-15 22:54         ` wwguy
2011-09-15 23:14           ` Joe Perches
2011-09-15 23:18             ` Luis R. Rodriguez
2011-09-15 23:21               ` Joe Perches
2011-09-15 23:21                 ` Luis R. Rodriguez
2011-09-15 18:46 ` [PATCH 09/27] iwlagn: New SKU for 6005 SFF Wey-Yi Guy
2011-09-15 18:46 ` [PATCH 10/27] iwlagn: fix modinfo display for 135 ucode Wey-Yi Guy
2011-09-15 18:46 ` [PATCH 11/27] iwlagn: simplify chain_noise_num_beacons indirection Wey-Yi Guy
2011-09-15 18:46 ` [PATCH 12/27] iwlagn: replace beacon_time_fsf_bits variable with #define Wey-Yi Guy
2011-09-15 18:46 ` [PATCH 13/27] iwlagn: provide data after WARN_ON Wey-Yi Guy
2011-09-15 18:46 ` [PATCH 14/27] iwlagn: merge eeprom access into single file Wey-Yi Guy
2011-09-15 18:46 ` [PATCH 15/27] iwlagn: move PCI-E transport files Wey-Yi Guy
2011-09-15 18:46 ` [PATCH 16/27] iwlagn: generically provide iwl_trans_send_cmd_pdu Wey-Yi Guy
2011-09-15 18:46 ` [PATCH 17/27] iwlagn: Makefile whitespace cleanup Wey-Yi Guy
2011-09-15 18:46 ` [PATCH 18/27] iwlagn: clean up PM code Wey-Yi Guy
2011-09-15 18:46 ` [PATCH 19/27] iwlagn: rename iwl-pci.h to iwl-cfg.h Wey-Yi Guy
2011-09-15 18:46 ` [PATCH 20/27] iwlagn: remove unused function declarations Wey-Yi Guy
2011-09-15 18:46 ` [PATCH 21/27] iwlagn: move sysfs files to debugfs Wey-Yi Guy
2011-09-15 18:46 ` [PATCH 22/27] iwlagn: remove drvdata support from bus layer Wey-Yi Guy
2011-09-15 18:46 ` [PATCH 23/27] iwlagn: add support for v2 of temperature offset calibration Wey-Yi Guy
2011-09-15 18:46 ` [PATCH 24/27] iwlagn: use iwl_eeprom_calib_hdr structure Wey-Yi Guy
2011-09-15 18:46 ` [PATCH 25/27] iwlagn: do not use interruptible waits Wey-Yi Guy
2011-09-15 18:46 ` [PATCH 26/27] iwlagn: fix stack corruption for temperature offset v2 Wey-Yi Guy
2011-09-15 18:46 ` [PATCH 27/27] iwlagn: signedness bug Wey-Yi Guy

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).