All of lore.kernel.org
 help / color / mirror / Atom feed
From: Wey-Yi Guy <wey-yi.w.guy@intel.com>
To: linville@tuxdriver.com
Cc: linux-wireless@vger.kernel.org,
	ipw3945-devel@lists.sourceforge.net,
	Wey-Yi Guy <wey-yi.w.guy@intel.com>
Subject: [PATCH 00/22] update for 2.6.37
Date: Thu,  7 Oct 2010 16:07:39 -0700	[thread overview]
Message-ID: <1286492881-15743-1-git-send-email-wey-yi.w.guy@intel.com> (raw)

We add temperature offset calibration support for 6000g2 series devices.
We also did a lot of cleanup to separate agn and legacy devices.

Johannes Berg (19):
  iwlagn: rename iwl_commit_rxon
  iwlwifi: introduce post_scan hook
  iwl3945: use iwl3945_commit_rxon
  iwlwifi: move chain settings to agn
  iwlwifi: rename iwl_mac_beacon_update
  iwlwifi: remove verify_signature eeprom operation
  iwlwifi: move agn specific station code there
  iwlwifi: move tx fail code to agn
  iwlwifi: remove spurious exports
  iwlwifi: remove agn rates info there
  iwlwifi: move iwl_toggle_rx_ant to agn
  iwlwifi: move iwl_dump_csr to agn
  iwlwifi: move iwl_dump_fh to agn
  iwlwifi: remove set_ct_kill operation
  iwlwifi: remove set_pwr_src operation
  iwlwifi: remove apm_ops.stop
  iwlwifi: clean up declarations
  iwlwifi: remove iwl_check_bits
  iwlwifi: fix dual-mode scanning

Shanyu Zhao (2):
  iwlagn: fix default calibration table size
  iwlagn: add temperature offset calib for 6000g2

Wey-Yi Guy (1):
  iwlagn: no version check for experimental uCode

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

 drivers/net/wireless/iwlwifi/Makefile        |    2 +-
 drivers/net/wireless/iwlwifi/iwl-1000.c      |    7 +-
 drivers/net/wireless/iwlwifi/iwl-3945.c      |   75 ++-
 drivers/net/wireless/iwlwifi/iwl-3945.h      |    9 +-
 drivers/net/wireless/iwlwifi/iwl-4965.c      |   27 +-
 drivers/net/wireless/iwlwifi/iwl-5000.c      |   14 +-
 drivers/net/wireless/iwlwifi/iwl-6000.c      |   22 +-
 drivers/net/wireless/iwlwifi/iwl-agn-calib.c |    2 +-
 drivers/net/wireless/iwlwifi/iwl-agn-calib.h |   86 +++
 drivers/net/wireless/iwlwifi/iwl-agn-hcmd.c  |    9 +-
 drivers/net/wireless/iwlwifi/iwl-agn-lib.c   |  332 ++++++++++++-
 drivers/net/wireless/iwlwifi/iwl-agn-rs.c    |   69 +++
 drivers/net/wireless/iwlwifi/iwl-agn-rs.h    |   10 -
 drivers/net/wireless/iwlwifi/iwl-agn-rx.c    |    2 +-
 drivers/net/wireless/iwlwifi/iwl-agn-sta.c   |  716 +++++++++++++++++++++++++
 drivers/net/wireless/iwlwifi/iwl-agn-tt.c    |    5 -
 drivers/net/wireless/iwlwifi/iwl-agn-tx.c    |   40 ++
 drivers/net/wireless/iwlwifi/iwl-agn-ucode.c |   28 +
 drivers/net/wireless/iwlwifi/iwl-agn.c       |   57 +--
 drivers/net/wireless/iwlwifi/iwl-agn.h       |   65 +++
 drivers/net/wireless/iwlwifi/iwl-calib.h     |   82 ---
 drivers/net/wireless/iwlwifi/iwl-commands.h  |   13 +-
 drivers/net/wireless/iwlwifi/iwl-core.c      |  401 +--------------
 drivers/net/wireless/iwlwifi/iwl-core.h      |   49 +--
 drivers/net/wireless/iwlwifi/iwl-debugfs.c   |    1 -
 drivers/net/wireless/iwlwifi/iwl-dev.h       |   12 +-
 drivers/net/wireless/iwlwifi/iwl-eeprom.c    |    7 +-
 drivers/net/wireless/iwlwifi/iwl-eeprom.h    |    1 -
 drivers/net/wireless/iwlwifi/iwl-helpers.h   |    5 -
 drivers/net/wireless/iwlwifi/iwl-rx.c        |    1 -
 drivers/net/wireless/iwlwifi/iwl-scan.c      |   12 +-
 drivers/net/wireless/iwlwifi/iwl-sta.c       |  725 +-------------------------
 drivers/net/wireless/iwlwifi/iwl-sta.h       |   35 +-
 drivers/net/wireless/iwlwifi/iwl-tx.c        |   38 --
 drivers/net/wireless/iwlwifi/iwl3945-base.c  |   55 ++-
 35 files changed, 1554 insertions(+), 1460 deletions(-)
 create mode 100644 drivers/net/wireless/iwlwifi/iwl-agn-calib.h
 create mode 100644 drivers/net/wireless/iwlwifi/iwl-agn-sta.c
 delete mode 100644 drivers/net/wireless/iwlwifi/iwl-calib.h


             reply	other threads:[~2010-10-07 23:08 UTC|newest]

Thread overview: 23+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2010-10-07 23:07 Wey-Yi Guy [this message]
2010-10-07 23:07 ` [PATCH 01/22] iwlagn: rename iwl_commit_rxon Wey-Yi Guy
2010-10-07 23:07 ` [PATCH 02/22] iwlwifi: introduce post_scan hook Wey-Yi Guy
2010-10-07 23:07 ` [PATCH 03/22] iwl3945: use iwl3945_commit_rxon Wey-Yi Guy
2010-10-07 23:07 ` [PATCH 04/22] iwlwifi: move chain settings to agn Wey-Yi Guy
2010-10-07 23:07 ` [PATCH 05/22] iwlwifi: rename iwl_mac_beacon_update Wey-Yi Guy
2010-10-07 23:07 ` [PATCH 06/22] iwlwifi: remove verify_signature eeprom operation Wey-Yi Guy
2010-10-07 23:07 ` [PATCH 07/22] iwlwifi: move agn specific station code there Wey-Yi Guy
2010-10-07 23:07 ` [PATCH 08/22] iwlwifi: move tx fail code to agn Wey-Yi Guy
2010-10-07 23:07 ` [PATCH 09/22] iwlwifi: remove spurious exports Wey-Yi Guy
2010-10-07 23:07 ` [PATCH 10/22] iwlwifi: remove agn rates info there Wey-Yi Guy
2010-10-07 23:07 ` [PATCH 11/22] iwlwifi: move iwl_toggle_rx_ant to agn Wey-Yi Guy
2010-10-07 23:07 ` [PATCH 12/22] iwlwifi: move iwl_dump_csr " Wey-Yi Guy
2010-10-07 23:07 ` [PATCH 13/22] iwlwifi: move iwl_dump_fh " Wey-Yi Guy
2010-10-07 23:07 ` [PATCH 14/22] iwlwifi: remove set_ct_kill operation Wey-Yi Guy
2010-10-07 23:07 ` [PATCH 15/22] iwlwifi: remove set_pwr_src operation Wey-Yi Guy
2010-10-07 23:07 ` [PATCH 16/22] iwlwifi: remove apm_ops.stop Wey-Yi Guy
2010-10-07 23:07 ` [PATCH 17/22] iwlwifi: clean up declarations Wey-Yi Guy
2010-10-07 23:07 ` [PATCH 18/22] iwlwifi: remove iwl_check_bits Wey-Yi Guy
2010-10-07 23:07 ` [PATCH 19/22] iwlwifi: fix dual-mode scanning Wey-Yi Guy
2010-10-07 23:07 ` [PATCH 20/22] iwlagn: no version check for experimental uCode Wey-Yi Guy
2010-10-07 23:08 ` [PATCH 21/22] iwlagn: fix default calibration table size Wey-Yi Guy
2010-10-07 23:08 ` [PATCH 22/22] iwlagn: add temperature offset calib for 6000g2 Wey-Yi Guy

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=1286492881-15743-1-git-send-email-wey-yi.w.guy@intel.com \
    --to=wey-yi.w.guy@intel.com \
    --cc=ipw3945-devel@lists.sourceforge.net \
    --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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.