linux-wireless.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 00/25] wl1271: pending patches
@ 2010-09-27  8:37 Luciano Coelho
  2010-09-27  8:37 ` [PATCH 01/25] wl1271: remove deprecated ACX definition Luciano Coelho
                   ` (24 more replies)
  0 siblings, 25 replies; 46+ messages in thread
From: Luciano Coelho @ 2010-09-27  8:37 UTC (permalink / raw)
  To: linux-wireless

Hi,

These patches have been pending on our internal tree (for way too long, I have
to admit).  The reason was that I couldn't test these patches before submitting
them upstream.

I have applied all these patches to the new wl12xx git tree [1].  I'll send a
pull request to John shortly.

John, no need to apply this, as I'll send them as part of a pull request.

Cheers,
Luca.

[1] git://git.kernel.org/pub/scm/linux/kernel/git/luca/wl12xx.git

Juuso Oikarinen (22):
  wl1271: Implement CMD_SET_STA_STATE to indicate connection completion
    to FW
  wl1271: Add trigger to net_device oper_state to change BT coex
    priority
  wl1271: Fix scan race condition
  wl1271: Change supported channel order for a more optimal scan
  wl1271: Remove outdated FIXME's
  wl1271: Move setting of wake-up conditions to ps.c from cmd.c
  wl1271: Remove acx_fw_version function
  wl1271: Release interrupt *after* releasing the driver context
  wl1271: Remove function cmd_read_memory
  wl1271: Enable/disable 11a support based on INI configuration
  wl1271: Reduce rate used for last PSM entry attempt
  wl1271: Enable 11a support always, prevent scanning for unsupporting
    chips
  wl1271: Add support for hardware GEM cipher
  wl1271: Fix tid-configuration of TX frames
  wl1271: Fix AC/TID default configuration
  wl1271: Move scan complete invocation into work function
  wl1271: Fix work cancelling when shutting down the driver
  wl1271: Separate interface removal to another function
  wl1271: Add hardware recovery mechanism
  wl1271: Add handling for failing hardware scan command
  wl1271: Optimize scan duration
  wl1271: Increase connection reliability

Luciano Coelho (3):
  wl1271: remove deprecated ACX definition
  wl1271: remove useless 11a check when scanning
  wl1271: fix forced passive scan

 drivers/net/wireless/wl12xx/wl1271.h          |   24 +-
 drivers/net/wireless/wl12xx/wl1271_acx.c      |   34 ---
 drivers/net/wireless/wl12xx/wl1271_acx.h      |   31 ---
 drivers/net/wireless/wl12xx/wl1271_boot.c     |   39 ++-
 drivers/net/wireless/wl12xx/wl1271_cmd.c      |   89 +++----
 drivers/net/wireless/wl12xx/wl1271_cmd.h      |   49 +---
 drivers/net/wireless/wl12xx/wl1271_conf.h     |   57 ++++-
 drivers/net/wireless/wl12xx/wl1271_event.c    |   15 +-
 drivers/net/wireless/wl12xx/wl1271_init.c     |   35 ++--
 drivers/net/wireless/wl12xx/wl1271_main.c     |  358 ++++++++++++++++---------
 drivers/net/wireless/wl12xx/wl1271_ps.c       |   20 ++-
 drivers/net/wireless/wl12xx/wl1271_ps.h       |    2 +-
 drivers/net/wireless/wl12xx/wl1271_scan.c     |   79 +++++-
 drivers/net/wireless/wl12xx/wl1271_scan.h     |    6 +-
 drivers/net/wireless/wl12xx/wl1271_sdio.c     |    3 +-
 drivers/net/wireless/wl12xx/wl1271_spi.c      |    3 +-
 drivers/net/wireless/wl12xx/wl1271_testmode.c |   14 +-
 drivers/net/wireless/wl12xx/wl1271_tx.c       |    6 +-
 drivers/net/wireless/wl12xx/wl1271_tx.h       |   17 --
 19 files changed, 486 insertions(+), 395 deletions(-)


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

end of thread, other threads:[~2010-10-06  6:19 UTC | newest]

Thread overview: 46+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-09-27  8:37 [PATCH 00/25] wl1271: pending patches Luciano Coelho
2010-09-27  8:37 ` [PATCH 01/25] wl1271: remove deprecated ACX definition Luciano Coelho
2010-09-27  8:37 ` [PATCH 02/25] wl1271: Implement CMD_SET_STA_STATE to indicate connection completion to FW Luciano Coelho
2010-09-27  8:37 ` [PATCH 03/25] wl1271: Add trigger to net_device oper_state to change BT coex priority Luciano Coelho
2010-09-27  8:37 ` [PATCH 04/25] wl1271: Fix scan race condition Luciano Coelho
2010-09-27  8:37 ` [PATCH 05/25] wl1271: remove useless 11a check when scanning Luciano Coelho
2010-09-27  8:37 ` [PATCH 06/25] wl1271: fix forced passive scan Luciano Coelho
2010-09-27  8:37 ` [PATCH 07/25] wl1271: Change supported channel order for a more optimal scan Luciano Coelho
2010-09-27  8:48   ` Johannes Berg
2010-09-27 10:50     ` Luciano Coelho
2010-09-27  8:37 ` [PATCH 08/25] wl1271: Remove outdated FIXME's Luciano Coelho
2010-09-27  8:37 ` [PATCH 09/25] wl1271: Move setting of wake-up conditions to ps.c from cmd.c Luciano Coelho
2010-09-27  8:37 ` [PATCH 10/25] wl1271: Remove acx_fw_version function Luciano Coelho
2010-09-27  8:37 ` [PATCH 11/25] wl1271: Release interrupt *after* releasing the driver context Luciano Coelho
2010-09-27  8:37 ` [PATCH 12/25] wl1271: Remove function cmd_read_memory Luciano Coelho
2010-09-27  8:37 ` [PATCH 13/25] wl1271: Enable/disable 11a support based on INI configuration Luciano Coelho
2010-10-06  5:26   ` Gabay, Benzy
2010-10-06  5:36     ` Juuso Oikarinen
2010-10-06  6:19       ` Gabay, Benzy
2010-09-27  8:37 ` [PATCH 14/25] wl1271: Reduce rate used for last PSM entry attempt Luciano Coelho
2010-09-27  8:37 ` [PATCH 15/25] wl1271: Enable 11a support always, prevent scanning for unsupporting chips Luciano Coelho
2010-09-27  8:37 ` [PATCH 16/25] wl1271: Add support for hardware GEM cipher Luciano Coelho
2010-09-27  9:12   ` Johannes Berg
2010-09-27  9:46     ` Juuso Oikarinen
2010-09-27  9:49       ` Johannes Berg
2010-09-27  9:58         ` Juuso Oikarinen
2010-09-27 10:01           ` Luciano Coelho
2010-09-27 10:42             ` [PATCHv2] " juuso.oikarinen
2010-09-27  8:37 ` [PATCH 17/25] wl1271: Fix tid-configuration of TX frames Luciano Coelho
2010-09-27  8:51   ` Johannes Berg
2010-09-27  8:57     ` Juuso Oikarinen
2010-09-27  8:37 ` [PATCH 18/25] wl1271: Fix AC/TID default configuration Luciano Coelho
2010-09-27  8:37 ` [PATCH 19/25] wl1271: Move scan complete invocation into work function Luciano Coelho
2010-09-27  8:37 ` [PATCH 20/25] wl1271: Fix work cancelling when shutting down the driver Luciano Coelho
2010-09-27  8:37 ` [PATCH 21/25] wl1271: Separate interface removal to another function Luciano Coelho
2010-09-27  8:37 ` [PATCH 22/25] wl1271: Add hardware recovery mechanism Luciano Coelho
2010-09-27  8:37 ` [PATCH 23/25] wl1271: Add handling for failing hardware scan command Luciano Coelho
2010-09-27  8:37 ` [PATCH 24/25] wl1271: Optimize scan duration Luciano Coelho
2010-10-05  5:30   ` Gabay, Benzy
2010-10-05  5:40     ` Juuso Oikarinen
2010-10-05 15:42       ` Gabay, Benzy
2010-10-06  4:59         ` Juuso Oikarinen
2010-10-06  5:21           ` Gabay, Benzy
2010-10-06  5:26             ` Juuso Oikarinen
2010-10-06  5:50               ` Gabay, Benzy
2010-09-27  8:37 ` [PATCH 25/25] wl1271: Increase connection reliability Luciano Coelho

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