linux-wireless.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 00/24] wl1271: bunch of patches from our internal tree wk12
@ 2010-03-26 10:53 Luciano Coelho
  2010-03-26 10:53 ` [PATCH 01/24] wl1271: fix wl1271_spi driver name Luciano Coelho
                   ` (24 more replies)
  0 siblings, 25 replies; 29+ messages in thread
From: Luciano Coelho @ 2010-03-26 10:53 UTC (permalink / raw)
  To: linville; +Cc: linux-wireless

Hi John,

Here are 25 more patches for wl1271 which are still pending in our internal
tree.  Please apply. :)

Cheers,
Luca.

Juuso Oikarinen (17):
  wl1271: Clean up RX rate reporting
  wl1271: Add TX rate reporting
  wl1271: Fix memory leaks in SPI initialization
  wl1271: Fix memory leak in scan command handling
  wl1271: Configure clock-request drive mode to open-drain
  wl1271: Fix memory leak in cmd_data_path
  wl1271: Update busyword checking mechanism
  wl1271: Remove device MAC-address randomization
  wl1271: Disable connection monitoring while not associated
  wl1271: Fix ad-hoc mode handling
  wl1271: Update beacon interval properly for ad-hoc
  wl1271: Fix memory leak in firmware crash scenario
  wl1271: Configure probe-request template when associated
  wl1271: Disconnect if PSM entry fails
  wl1271: Configure HW connection monitor
  wl1271: Add keep-alive frame template support
  wl1271: Enable hardware keep alive messages

Luciano Coelho (4):
  wl1271: fix wl1271_spi driver name
  wl1271: wait for join command complete event
  wl1271: wait for disconnect command complete event
  wl1271: remove deprecated usage of RX status noise

Saravanan Dhanabal (1):
  wl1271: Fix msleep() delay while waiting for completion

Teemu Paasikivi (2):
  wl1271: Warnings caused by wrong format specifiers fixed
  wl1271: Removed checking of PSM from handling BSS_LOST_EVENT

 drivers/net/wireless/wl12xx/wl1271.h       |   14 +-
 drivers/net/wireless/wl12xx/wl1271_acx.c   |   73 ++++++++++-
 drivers/net/wireless/wl12xx/wl1271_acx.h   |   33 +++++-
 drivers/net/wireless/wl12xx/wl1271_boot.c  |   14 ++-
 drivers/net/wireless/wl12xx/wl1271_boot.h  |    7 +-
 drivers/net/wireless/wl12xx/wl1271_cmd.c   |   93 +++++++++++--
 drivers/net/wireless/wl12xx/wl1271_cmd.h   |    9 +-
 drivers/net/wireless/wl12xx/wl1271_conf.h  |   35 +++++
 drivers/net/wireless/wl12xx/wl1271_event.c |   40 +-----
 drivers/net/wireless/wl12xx/wl1271_init.c  |   46 +++++--
 drivers/net/wireless/wl12xx/wl1271_main.c  |  198 ++++++++++++++++++++++++----
 drivers/net/wireless/wl12xx/wl1271_rx.c    |   83 +-----------
 drivers/net/wireless/wl12xx/wl1271_rx.h    |    2 +-
 drivers/net/wireless/wl12xx/wl1271_sdio.c  |    4 +-
 drivers/net/wireless/wl12xx/wl1271_spi.c   |   71 ++++-------
 drivers/net/wireless/wl12xx/wl1271_tx.c    |   37 +++--
 drivers/net/wireless/wl12xx/wl1271_tx.h    |    1 +
 17 files changed, 513 insertions(+), 247 deletions(-)


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

end of thread, other threads:[~2010-03-26 13:37 UTC | newest]

Thread overview: 29+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2010-03-26 10:53 [PATCH 00/24] wl1271: bunch of patches from our internal tree wk12 Luciano Coelho
2010-03-26 10:53 ` [PATCH 01/24] wl1271: fix wl1271_spi driver name Luciano Coelho
2010-03-26 10:53 ` [PATCH 02/24] wl1271: Clean up RX rate reporting Luciano Coelho
2010-03-26 10:53 ` [PATCH 03/24] wl1271: Add TX " Luciano Coelho
2010-03-26 10:53 ` [PATCH 04/24] wl1271: Fix memory leaks in SPI initialization Luciano Coelho
2010-03-26 10:53 ` [PATCH 05/24] wl1271: Fix memory leak in scan command handling Luciano Coelho
2010-03-26 10:53 ` [PATCH 06/24] wl1271: Configure clock-request drive mode to open-drain Luciano Coelho
2010-03-26 10:53 ` [PATCH 07/24] wl1271: Warnings caused by wrong format specifiers fixed Luciano Coelho
2010-03-26 10:53 ` [PATCH 08/24] wl1271: Fix memory leak in cmd_data_path Luciano Coelho
2010-03-26 10:53 ` [PATCH 09/24] wl1271: Update busyword checking mechanism Luciano Coelho
2010-03-26 10:53 ` [PATCH 10/24] wl1271: Remove device MAC-address randomization Luciano Coelho
2010-03-26 10:53 ` [PATCH 11/24] wl1271: wait for join command complete event Luciano Coelho
2010-03-26 10:53 ` [PATCH 12/24] wl1271: wait for disconnect " Luciano Coelho
2010-03-26 10:53 ` [PATCH 13/24] wl1271: remove deprecated usage of RX status noise Luciano Coelho
2010-03-26 10:53 ` [PATCH 14/24] wl1271: Disable connection monitoring while not associated Luciano Coelho
2010-03-26 10:53 ` [PATCH 15/24] wl1271: Fix ad-hoc mode handling Luciano Coelho
2010-03-26 10:53 ` [PATCH 16/24] wl1271: Update beacon interval properly for ad-hoc Luciano Coelho
2010-03-26 10:53 ` [PATCH 17/24] wl1271: Removed checking of PSM from handling BSS_LOST_EVENT Luciano Coelho
2010-03-26 10:53 ` [PATCH 18/24] wl1271: Fix memory leak in firmware crash scenario Luciano Coelho
2010-03-26 10:53 ` [PATCH 19/24] wl1271: Configure probe-request template when associated Luciano Coelho
2010-03-26 10:53 ` [PATCH 20/24] wl1271: Disconnect if PSM entry fails Luciano Coelho
2010-03-26 10:53 ` [PATCH 21/24] wl1271: Configure HW connection monitor Luciano Coelho
2010-03-26 10:53 ` [PATCH 22/24] wl1271: Add keep-alive frame template support Luciano Coelho
2010-03-26 10:53 ` [PATCH 23/24] wl1271: Enable hardware keep alive messages Luciano Coelho
2010-03-26 10:53 ` [PATCH 24/24] wl1271: Fix msleep() delay while waiting for completion Luciano Coelho
2010-03-26 13:02 ` [PATCH 00/24] wl1271: bunch of patches from our internal tree wk12 John W. Linville
2010-03-26 13:13   ` Luciano Coelho
2010-03-26 13:26     ` John W. Linville
2010-03-26 13:37       ` 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).