linux-wireless.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v2 00/10] ath9k patches
@ 2013-12-18  4:23 Sujith Manoharan
  2013-12-18  4:23 ` [PATCH v2 01/10] ath9k: Cleanup spectral scan code Sujith Manoharan
                   ` (9 more replies)
  0 siblings, 10 replies; 14+ messages in thread
From: Sujith Manoharan @ 2013-12-18  4:23 UTC (permalink / raw)
  To: John Linville; +Cc: linux-wireless

From: Sujith Manoharan <c_manoha@qca.qualcomm.com>

Various HW fixes and pending patches, rebased over current
HEAD + Felix's patches.

There's one stable fix which was posted earlier:
https://patchwork.kernel.org/patch/3351331/

Sujith

Sujith Manoharan (10):
  ath9k: Cleanup spectral scan code
  ath9k: Cleanup ath9k.h
  ath9k: Remove unneeded ref. count initialization
  ath9k: Initialize "switchcomspdt" eeprom field explicitly
  ath9k: Update BaseExtension_1 eeprom structure
  ath9k: Fix regulatory compliance
  ath9k: Remove ath9k_hw_gettsf32()
  ath9k: Add a delay between RTC reset/clear for AR9003
  ath9k: Fix RTC reset delay
  ath9k: Use a subroutine for the AR9330 reset WAR

 drivers/net/wireless/ath/ath9k/Makefile        |   4 +-
 drivers/net/wireless/ath/ath9k/ar9003_eeprom.c |  52 ++-
 drivers/net/wireless/ath/ath9k/ar9003_eeprom.h |  14 +-
 drivers/net/wireless/ath/ath9k/ar9003_mci.c    |   2 +-
 drivers/net/wireless/ath/ath9k/ar9003_phy.h    |   4 +-
 drivers/net/wireless/ath/ath9k/ath9k.h         | 358 ++++------------
 drivers/net/wireless/ath/ath9k/debug.c         | 311 +-------------
 drivers/net/wireless/ath/ath9k/debug.h         |   2 -
 drivers/net/wireless/ath/ath9k/hw.c            |  90 ++--
 drivers/net/wireless/ath/ath9k/hw.h            |   1 -
 drivers/net/wireless/ath/ath9k/init.c          |   4 +-
 drivers/net/wireless/ath/ath9k/recv.c          | 181 ---------
 drivers/net/wireless/ath/ath9k/spectral.c      | 543 +++++++++++++++++++++++++
 drivers/net/wireless/ath/ath9k/spectral.h      | 212 ++++++++++
 14 files changed, 948 insertions(+), 830 deletions(-)
 create mode 100644 drivers/net/wireless/ath/ath9k/spectral.c
 create mode 100644 drivers/net/wireless/ath/ath9k/spectral.h

-- 
1.8.5.1


^ permalink raw reply	[flat|nested] 14+ messages in thread
* [PATCH v2 00/10] ath9k patches
@ 2014-10-02  1:03 Sujith Manoharan
  0 siblings, 0 replies; 14+ messages in thread
From: Sujith Manoharan @ 2014-10-02  1:03 UTC (permalink / raw)
  To: John Linville; +Cc: linux-wireless, ath9k-devel

From: Sujith Manoharan <c_manoha@qca.qualcomm.com>

Pending MCC fixes, rebased over -rc7.

Sujith Manoharan (10):
  ath: Add support for tracing
  ath9k: Print RoC expiration
  ath9k: Check pending frames properly
  ath9k: Fix pending frame check
  ath9k: Remove duplicate code
  ath9k: Fix queue handling in flush()
  ath9k: Pass context to ath9k_chanctx_wake_queues()
  ath9k: Add ath9k_chanctx_stop_queues()
  ath9k: Fix queue handling for channel contexts
  ath9k: Fix flushing in MCC mode

 drivers/net/wireless/ath/Kconfig         |  8 ++++
 drivers/net/wireless/ath/Makefile        |  4 ++
 drivers/net/wireless/ath/ath.h           |  1 +
 drivers/net/wireless/ath/ath9k/ath9k.h   | 10 ++++-
 drivers/net/wireless/ath/ath9k/channel.c | 48 +++++++++++++++++++--
 drivers/net/wireless/ath/ath9k/main.c    | 30 +++-----------
 drivers/net/wireless/ath/main.c          |  3 ++
 drivers/net/wireless/ath/trace.c         | 20 +++++++++
 drivers/net/wireless/ath/trace.h         | 71 ++++++++++++++++++++++++++++++++
 9 files changed, 166 insertions(+), 29 deletions(-)
 create mode 100644 drivers/net/wireless/ath/trace.c
 create mode 100644 drivers/net/wireless/ath/trace.h

-- 
2.1.1


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

end of thread, other threads:[~2014-10-02  1:02 UTC | newest]

Thread overview: 14+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-12-18  4:23 [PATCH v2 00/10] ath9k patches Sujith Manoharan
2013-12-18  4:23 ` [PATCH v2 01/10] ath9k: Cleanup spectral scan code Sujith Manoharan
2013-12-18  4:23 ` [PATCH v2 02/10] ath9k: Cleanup ath9k.h Sujith Manoharan
2013-12-18  4:23 ` [PATCH v2 03/10] ath9k: Remove unneeded ref. count initialization Sujith Manoharan
2013-12-18  4:23 ` [PATCH v2 04/10] ath9k: Initialize "switchcomspdt" eeprom field explicitly Sujith Manoharan
2013-12-18  4:23 ` [PATCH v2 05/10] ath9k: Update BaseExtension_1 eeprom structure Sujith Manoharan
2013-12-18  4:23 ` [PATCH v2 06/10] ath9k: Fix regulatory compliance Sujith Manoharan
2013-12-18  4:23 ` [PATCH v2 07/10] ath9k: Remove ath9k_hw_gettsf32() Sujith Manoharan
2013-12-18 11:25   ` Felix Fietkau
2013-12-18 11:26     ` Sujith Manoharan
2013-12-18  4:23 ` [PATCH v2 08/10] ath9k: Add a delay between RTC reset/clear for AR9003 Sujith Manoharan
2013-12-18  4:23 ` [PATCH v2 09/10] ath9k: Fix RTC reset delay Sujith Manoharan
2013-12-18  4:23 ` [PATCH v2 10/10] ath9k: Use a subroutine for the AR9330 reset WAR Sujith Manoharan
  -- strict thread matches above, loose matches on Subject: below --
2014-10-02  1:03 [PATCH v2 00/10] ath9k patches Sujith Manoharan

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