linux-wireless.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH V2 00/26] use unified firmware and add ops in cfg
@ 2016-01-25  7:35 Glen Lee
  2016-01-25  7:35 ` [PATCH V2 01/26] staging: wilc1000: fix bug when changing virtual interface Glen Lee
                   ` (26 more replies)
  0 siblings, 27 replies; 32+ messages in thread
From: Glen Lee @ 2016-01-25  7:35 UTC (permalink / raw)
  To: gregkh
  Cc: devel, linux-wireless, tony.cho, glen.lee, leo.kim, austin.shin,
	adham.abozaeid, Nicolas.FERRE

This patch series contains                                                      
* support suspend and resume functionality                                      
* use a unified firmware for all mode of operations(station, ap, p2p)           
* support Station/AP concurrency                                                
* increase link speed                                                           
* add a cfg operation for adjusting the tx power                                
* fix bug on p2p, WEP security and chaning virtual interface

Changes in V2: details in each patch files.
 - 0004-staging-wilc1000-add-sdio-resume-suspend.patch
 - 0006-staging-wilc1000-add-ops-resuem-suspend-wakeup-in-cf.patch
 - 0009-staging-wilc1000-use-unified-firmware.patch
 - 0015-staging-wilc1000-wilc_set_wfi_drv_handler-add-mac-in.patch
 - 0021-staging-wilc1000-increase-link-speed.patch
 - 0024-staging-wilc1000-add-ops-tx-power-in-cfg80211.patch

Glen Lee (26):
  staging: wilc1000: fix bug when changing virtual interface
  staging: wilc1000: remove define WILC_OPTIMIZE_SLEEP_INT
  staging: wilc1000: support suspend/resume functionality
  staging: wilc1000: add sdio resume/suspend
  staging: wilc1000: sdio_init: add resume argument
  staging: wilc1000: add ops resuem/suspend/wakeup in cfg80211
  staging: wilc1000: remove sleep and reduce close timeout
  staging: wilc1000: get address from wilc
  staging: wilc1000: use unified firmware
  staging: wilc1000: remove wilc_set_machw_change_vir_if
  staging: wilc1000: set bssid with mode
  staging: wilc1000: set proper bssid address
  staging: wilc1000: change_virtual_intf: change codes for unified
    firmware
  staging: wilc1000: call power save after changing mode
  staging: wilc1000: wilc_set_wfi_drv_handler: add mac index
  staging: wilc1000: remove unused functions
  staging: wilc1000: ignore power save
  staging: wilc1000: handle connecting error
  staging: wilc1000: tcp_process: fix a build warning
  staging: wilc1000: remove define TCP_ACK_FILTER
  staging: wilc1000: increase link speed
  staging: wilc1000: disable power save when AP mode
  staging: wilc1000: fix bug on p2p connection
  staging: wilc1000: add ops tx power in cfg80211
  staging: wilc1000: fix WEP security bug
  staging: wilc1000: get mac address after setting drv handler

 drivers/staging/wilc1000/Makefile                 |   6 +-
 drivers/staging/wilc1000/host_interface.c         | 250 ++++++++--------
 drivers/staging/wilc1000/host_interface.h         |   9 +-
 drivers/staging/wilc1000/linux_wlan.c             |  87 +++---
 drivers/staging/wilc1000/wilc_sdio.c              | 102 ++++++-
 drivers/staging/wilc1000/wilc_spi.c               |   2 +-
 drivers/staging/wilc1000/wilc_wfi_cfgoperations.c | 348 +++++++---------------
 drivers/staging/wilc1000/wilc_wfi_netdevice.h     |   8 +-
 drivers/staging/wilc1000/wilc_wlan.c              | 202 ++++---------
 drivers/staging/wilc1000/wilc_wlan.h              |  10 +-
 drivers/staging/wilc1000/wilc_wlan_if.h           |   3 +-
 11 files changed, 437 insertions(+), 590 deletions(-)

-- 
1.9.1


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

end of thread, other threads:[~2016-02-03 23:26 UTC | newest]

Thread overview: 32+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-01-25  7:35 [PATCH V2 00/26] use unified firmware and add ops in cfg Glen Lee
2016-01-25  7:35 ` [PATCH V2 01/26] staging: wilc1000: fix bug when changing virtual interface Glen Lee
2016-01-25  7:35 ` [PATCH V2 02/26] staging: wilc1000: remove define WILC_OPTIMIZE_SLEEP_INT Glen Lee
2016-01-25  7:35 ` [PATCH V2 03/26] staging: wilc1000: support suspend/resume functionality Glen Lee
2016-01-25  7:35 ` [PATCH V2 04/26] staging: wilc1000: add sdio resume/suspend Glen Lee
2016-01-25  7:35 ` [PATCH V2 05/26] staging: wilc1000: sdio_init: add resume argument Glen Lee
2016-01-25  7:35 ` [PATCH V2 06/26] staging: wilc1000: add ops resuem/suspend/wakeup in cfg80211 Glen Lee
2016-01-25  7:35 ` [PATCH V2 07/26] staging: wilc1000: remove sleep and reduce close timeout Glen Lee
2016-01-25  7:35 ` [PATCH V2 08/26] staging: wilc1000: get address from wilc Glen Lee
2016-01-25  7:35 ` [PATCH V2 09/26] staging: wilc1000: use unified firmware Glen Lee
2016-01-25  7:35 ` [PATCH V2 10/26] staging: wilc1000: remove wilc_set_machw_change_vir_if Glen Lee
2016-01-25  7:35 ` [PATCH V2 11/26] staging: wilc1000: set bssid with mode Glen Lee
2016-01-25  7:35 ` [PATCH V2 12/26] staging: wilc1000: set proper bssid address Glen Lee
2016-01-25  7:35 ` [PATCH V2 13/26] staging: wilc1000: change_virtual_intf: change codes for unified firmware Glen Lee
2016-01-25  7:35 ` [PATCH V2 14/26] staging: wilc1000: call power save after changing mode Glen Lee
2016-01-25  7:35 ` [PATCH V2 15/26] staging: wilc1000: wilc_set_wfi_drv_handler: add mac index Glen Lee
2016-02-03 23:26   ` Greg KH
2016-01-25  7:35 ` [PATCH V2 16/26] staging: wilc1000: remove unused functions Glen Lee
2016-01-25  7:35 ` [PATCH V2 17/26] staging: wilc1000: ignore power save Glen Lee
2016-01-25  7:35 ` [PATCH V2 18/26] staging: wilc1000: handle connecting error Glen Lee
2016-01-25  7:35 ` [PATCH V2 19/26] staging: wilc1000: tcp_process: fix a build warning Glen Lee
2016-01-25  7:35 ` [PATCH V2 20/26] staging: wilc1000: remove define TCP_ACK_FILTER Glen Lee
2016-01-25  7:35 ` [PATCH V2 21/26] staging: wilc1000: increase link speed Glen Lee
2016-01-25  7:35 ` [PATCH V2 22/26] staging: wilc1000: disable power save when AP mode Glen Lee
2016-01-25  7:35 ` [PATCH V2 23/26] staging: wilc1000: fix bug on p2p connection Glen Lee
2016-01-25  7:35 ` [PATCH V2 24/26] staging: wilc1000: add ops tx power in cfg80211 Glen Lee
2016-01-25  7:35 ` [PATCH V2 25/26] staging: wilc1000: fix WEP security bug Glen Lee
2016-01-25  7:35 ` [PATCH V2 26/26] staging: wilc1000: get mac address after setting drv handler Glen Lee
2016-01-25 13:15 ` [PATCH V2 00/26] use unified firmware and add ops in cfg Kalle Valo
2016-01-25 17:21   ` Greg KH
2016-01-26  2:44     ` glen lee
2016-01-26  2:55       ` Greg KH

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