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/14] update for 2.6.39
Date: Fri, 21 Jan 2011 16:06:35 -0800	[thread overview]
Message-ID: <1295654809-5790-1-git-send-email-wey-yi.w.guy@intel.com> (raw)

We add 2000 series device support
We also fix a issue for 1000 series device to support idle power save
We add initial implementation on P2P supports

Jay Sternberg (1):
  iwlwifi: correct debugfs data dumped from sram

Johannes Berg (3):
  iwlwifi: implement remain-on-channel
  iwlwifi: replace minimum slot time constant
  iwlwifi: initial P2P support

Meenakshi Venkataraman (1):
  iwlagn: Enable idle powersave mode in 1000 series

Wey-Yi Guy (9):
  iwlwifi: use mac80211 throughput trigger
  iwlagn: remove reference to gen2a and gen2b
  iwlagn: add 2000 series EEPROM version
  iwlagn: 2000 series devices support
  iwlagn: add 2000 series pci id
  iwlagn: add 2000 series to Kconfig
  iwlagn: remove Gen2 from Kconfig
  iwlwifi: remove g2 from csr hw rev
  iwlwifi: add hw rev for 2000 series devices

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/Kconfig        |   26 ++-
 drivers/net/wireless/iwlwifi/Makefile       |    1 +
 drivers/net/wireless/iwlwifi/iwl-1000.c     |    1 +
 drivers/net/wireless/iwlwifi/iwl-2000.c     |  556 +++++++++++++++++++++++++++
 drivers/net/wireless/iwlwifi/iwl-3945-led.c |   27 --
 drivers/net/wireless/iwlwifi/iwl-6000.c     |   52 ++--
 drivers/net/wireless/iwlwifi/iwl-agn-hcmd.c |   18 +-
 drivers/net/wireless/iwlwifi/iwl-agn-led.c  |   14 +-
 drivers/net/wireless/iwlwifi/iwl-agn-led.h  |    1 +
 drivers/net/wireless/iwlwifi/iwl-agn-rxon.c |   19 +-
 drivers/net/wireless/iwlwifi/iwl-agn-tx.c   |    9 +-
 drivers/net/wireless/iwlwifi/iwl-agn.c      |  151 +++++++-
 drivers/net/wireless/iwlwifi/iwl-agn.h      |   11 +
 drivers/net/wireless/iwlwifi/iwl-commands.h |    5 +
 drivers/net/wireless/iwlwifi/iwl-core.c     |    7 +-
 drivers/net/wireless/iwlwifi/iwl-core.h     |   14 -
 drivers/net/wireless/iwlwifi/iwl-csr.h      |   14 +-
 drivers/net/wireless/iwlwifi/iwl-debugfs.c  |  106 +++---
 drivers/net/wireless/iwlwifi/iwl-dev.h      |   24 +-
 drivers/net/wireless/iwlwifi/iwl-eeprom.h   |   26 +-
 drivers/net/wireless/iwlwifi/iwl-led.c      |  201 ++++------
 drivers/net/wireless/iwlwifi/iwl-led.h      |   16 +-
 drivers/net/wireless/iwlwifi/iwl-legacy.c   |    4 -
 drivers/net/wireless/iwlwifi/iwl3945-base.c |    8 +-
 24 files changed, 998 insertions(+), 313 deletions(-)
 create mode 100644 drivers/net/wireless/iwlwifi/iwl-2000.c


             reply	other threads:[~2011-01-22  0:18 UTC|newest]

Thread overview: 26+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2011-01-22  0:06 Wey-Yi Guy [this message]
2011-01-22  0:06 ` [PATCH 01/14] iwlwifi: use mac80211 throughput trigger Wey-Yi Guy
2011-01-23  9:05   ` Johannes Berg
2011-01-23 18:05     ` Guy, Wey-Yi
2011-01-22  0:06 ` [PATCH 02/14] iwlagn: remove reference to gen2a and gen2b Wey-Yi Guy
2011-01-22  0:06 ` [PATCH 03/14] iwlagn: add 2000 series EEPROM version Wey-Yi Guy
2011-01-22  0:06 ` [PATCH 04/14] iwlagn: 2000 series devices support Wey-Yi Guy
2011-01-22  1:56   ` [ipw3945-devel] " Gábor Stefanik
2011-01-22  2:12     ` Daniel Halperin
2011-01-22  2:37       ` Gábor Stefanik
2011-01-22  2:37         ` Gábor Stefanik
2011-01-22  3:07           ` Daniel Halperin
2011-01-22  3:55             ` Gábor Stefanik
2011-01-23 11:25   ` Bernhard Schmidt
2011-01-23 18:12     ` Guy, Wey-Yi
2011-01-22  0:06 ` [PATCH 05/14] iwlagn: add 2000 series pci id Wey-Yi Guy
2011-01-22  0:06 ` [PATCH 06/14] iwlagn: add 2000 series to Kconfig Wey-Yi Guy
2011-01-22  0:06 ` [PATCH 07/14] iwlagn: remove Gen2 from Kconfig Wey-Yi Guy
2011-01-22  1:54   ` [ipw3945-devel] " Gábor Stefanik
2011-01-22  0:06 ` [PATCH 08/14] iwlwifi: remove g2 from csr hw rev Wey-Yi Guy
2011-01-22  0:06 ` [PATCH 09/14] iwlwifi: add hw rev for 2000 series devices Wey-Yi Guy
2011-01-22  0:06 ` [PATCH 10/14] iwlwifi: correct debugfs data dumped from sram Wey-Yi Guy
2011-01-22  0:06 ` [PATCH 11/14] iwlagn: Enable idle powersave mode in 1000 series Wey-Yi Guy
2011-01-22  0:06 ` [PATCH 12/14] iwlwifi: implement remain-on-channel Wey-Yi Guy
2011-01-22  0:06 ` [PATCH 13/14] iwlwifi: replace minimum slot time constant Wey-Yi Guy
2011-01-22  0:06 ` [PATCH 14/14] iwlwifi: initial P2P support 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=1295654809-5790-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.