linux-wireless.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 00/28] update for 3.4: iwlwifi 2012-02-02
@ 2012-02-02 23:08 Wey-Yi Guy
  2012-02-02 23:08 ` [PATCH 01/28] iwlwifi: add fw_alive to transport layer API, kill tx_start Wey-Yi Guy
                   ` (27 more replies)
  0 siblings, 28 replies; 29+ messages in thread
From: Wey-Yi Guy @ 2012-02-02 23:08 UTC (permalink / raw)
  To: linville; +Cc: linux-wireless, Wey-Yi Guy

We doing a lot of preparation works and get ready to split the driver into
two separate layers in order to accommodate the new architecture.

Amit Beka (1):
  iwlwifi: range check to testmode direct reg access

Don Fry (3):
  iwlwifi: clarify comment
  iwlwifi: move bcast_sta_id init to common routine
  iwlwifi: move all ucode routines to iwl-ucode.c

Emmanuel Grumbach (22):
  iwlwifi: add fw_alive to transport layer API, kill tx_start
  iwlwifi: separate the APM from the EEPROM
  iwlwifi: move the shrd memory from priv
  iwlwifi: allocate the transport from the bus layer
  iwlwifi: move the bus configuration to transport
  iwlwifi: the read / write register ops move to transport
  iwlwifi: give trans to all the read / write functions
  iwlwifi: remove the pointer to dev from the bus layer
  iwlwifi: don't use the bus for ucode fw_desc any more
  iwlwifi: rename trans_ops->request_irq to trans_ops->start_hw
  iwlwifi: move prepare_card_hw to start_hw
  iwlwifi: move apm_init to start_hw
  iwlwifi: introduce trans_ops->stop_hw
  iwlwifi: move the RF kill logic from iwl_probe to transport
  iwlwifi: consolidate the start_device flow
  iwlwifi: kill bus_apm_config
  iwlwifi: kill bus_is_pm_supported
  iwlwifi: kill bus_get_hw_id_string
  iwlwifi: kill bus_get_hw_id
  iwlwifi: move hw_rev to transport layer
  iwlwifi: stop_hw replace enable_rfkill_int
  iwlwifi: debug print in tx_queue_set_status is more clear

Gregory Greenman (1):
  iwlwifi: Connect IDI transport to driver.

Johannes Berg (1):
  iwlwifi: release IRQ in error path

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

 drivers/net/wireless/iwlwifi/iwl-1000.c           |    6 +-
 drivers/net/wireless/iwlwifi/iwl-2000.c           |    4 +-
 drivers/net/wireless/iwlwifi/iwl-5000.c           |    6 +-
 drivers/net/wireless/iwlwifi/iwl-6000.c           |   10 +-
 drivers/net/wireless/iwlwifi/iwl-agn-rx.c         |    8 +-
 drivers/net/wireless/iwlwifi/iwl-agn-tt.c         |   14 +-
 drivers/net/wireless/iwlwifi/iwl-agn.c            |  713 +-------------------
 drivers/net/wireless/iwlwifi/iwl-agn.h            |    3 +-
 drivers/net/wireless/iwlwifi/iwl-bus.h            |   64 --
 drivers/net/wireless/iwlwifi/iwl-core.c           |  128 +----
 drivers/net/wireless/iwlwifi/iwl-core.h           |    6 -
 drivers/net/wireless/iwlwifi/iwl-debug.h          |   16 +-
 drivers/net/wireless/iwlwifi/iwl-debugfs.c        |    6 +-
 drivers/net/wireless/iwlwifi/iwl-dev.h            |  109 ---
 drivers/net/wireless/iwlwifi/iwl-eeprom.c         |   65 +-
 drivers/net/wireless/iwlwifi/iwl-io.c             |  193 +++---
 drivers/net/wireless/iwlwifi/iwl-io.h             |   60 +-
 drivers/net/wireless/iwlwifi/iwl-led.c            |    9 +-
 drivers/net/wireless/iwlwifi/iwl-mac80211.c       |   36 +-
 drivers/net/wireless/iwlwifi/iwl-pci.c            |  229 +------
 drivers/net/wireless/iwlwifi/iwl-power.c          |    2 +-
 drivers/net/wireless/iwlwifi/iwl-shared.h         |    2 -
 drivers/net/wireless/iwlwifi/iwl-testmode.c       |   36 +-
 drivers/net/wireless/iwlwifi/iwl-trans-pcie-int.h |   18 +-
 drivers/net/wireless/iwlwifi/iwl-trans-pcie-rx.c  |  103 ++--
 drivers/net/wireless/iwlwifi/iwl-trans-pcie-tx.c  |   55 +-
 drivers/net/wireless/iwlwifi/iwl-trans-pcie.c     |  661 +++++++++++++++----
 drivers/net/wireless/iwlwifi/iwl-trans.h          |  133 +++--
 drivers/net/wireless/iwlwifi/iwl-ucode.c          |  740 ++++++++++++++++++---
 drivers/net/wireless/iwlwifi/iwl-ucode.h          |  178 +++++
 30 files changed, 1837 insertions(+), 1776 deletions(-)
 create mode 100644 drivers/net/wireless/iwlwifi/iwl-ucode.h


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

end of thread, other threads:[~2012-02-03  0:17 UTC | newest]

Thread overview: 29+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-02-02 23:08 [PATCH 00/28] update for 3.4: iwlwifi 2012-02-02 Wey-Yi Guy
2012-02-02 23:08 ` [PATCH 01/28] iwlwifi: add fw_alive to transport layer API, kill tx_start Wey-Yi Guy
2012-02-02 23:08 ` [PATCH 02/28] iwlwifi: Connect IDI transport to driver Wey-Yi Guy
2012-02-02 23:08 ` [PATCH 03/28] iwlwifi: separate the APM from the EEPROM Wey-Yi Guy
2012-02-02 23:08 ` [PATCH 04/28] iwlwifi: move the shrd memory from priv Wey-Yi Guy
2012-02-02 23:08 ` [PATCH 05/28] iwlwifi: allocate the transport from the bus layer Wey-Yi Guy
2012-02-02 23:08 ` [PATCH 06/28] iwlwifi: move the bus configuration to transport Wey-Yi Guy
2012-02-02 23:08 ` [PATCH 07/28] iwlwifi: the read / write register ops move " Wey-Yi Guy
2012-02-02 23:08 ` [PATCH 08/28] iwlwifi: give trans to all the read / write functions Wey-Yi Guy
2012-02-02 23:09 ` [PATCH 09/28] iwlwifi: remove the pointer to dev from the bus layer Wey-Yi Guy
2012-02-02 23:09 ` [PATCH 10/28] iwlwifi: don't use the bus for ucode fw_desc any more Wey-Yi Guy
2012-02-02 23:09 ` [PATCH 11/28] iwlwifi: rename trans_ops->request_irq to trans_ops->start_hw Wey-Yi Guy
2012-02-02 23:09 ` [PATCH 12/28] iwlwifi: move prepare_card_hw to start_hw Wey-Yi Guy
2012-02-02 23:09 ` [PATCH 13/28] iwlwifi: move apm_init " Wey-Yi Guy
2012-02-02 23:09 ` [PATCH 14/28] iwlwifi: introduce trans_ops->stop_hw Wey-Yi Guy
2012-02-02 23:09 ` [PATCH 15/28] iwlwifi: move the RF kill logic from iwl_probe to transport Wey-Yi Guy
2012-02-02 23:09 ` [PATCH 16/28] iwlwifi: consolidate the start_device flow Wey-Yi Guy
2012-02-02 23:09 ` [PATCH 17/28] iwlwifi: kill bus_apm_config Wey-Yi Guy
2012-02-02 23:09 ` [PATCH 18/28] iwlwifi: kill bus_is_pm_supported Wey-Yi Guy
2012-02-02 23:09 ` [PATCH 19/28] iwlwifi: kill bus_get_hw_id_string Wey-Yi Guy
2012-02-02 23:09 ` [PATCH 20/28] iwlwifi: kill bus_get_hw_id Wey-Yi Guy
2012-02-02 23:09 ` [PATCH 21/28] iwlwifi: move hw_rev to transport layer Wey-Yi Guy
2012-02-02 23:09 ` [PATCH 22/28] iwlwifi: stop_hw replace enable_rfkill_int Wey-Yi Guy
2012-02-02 23:09 ` [PATCH 23/28] iwlwifi: debug print in tx_queue_set_status is more clear Wey-Yi Guy
2012-02-02 23:09 ` [PATCH 24/28] iwlwifi: clarify comment Wey-Yi Guy
2012-02-02 23:09 ` [PATCH 25/28] iwlwifi: move bcast_sta_id init to common routine Wey-Yi Guy
2012-02-02 23:09 ` [PATCH 26/28] iwlwifi: move all ucode routines to iwl-ucode.c Wey-Yi Guy
2012-02-02 23:09 ` [PATCH 27/28] iwlwifi: release IRQ in error path Wey-Yi Guy
2012-02-02 23:09 ` [PATCH 28/28] iwlwifi: range check to testmode direct reg access 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).