All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 00/26] use unified firmware and add ops in cfg
@ 2016-01-12  7:39 Glen Lee
  2016-01-12  7:39 ` [PATCH 01/26] staging: wilc1000: fix bug when changing virtual interface Glen Lee
                   ` (25 more replies)
  0 siblings, 26 replies; 35+ messages in thread
From: Glen Lee @ 2016-01-12  7:39 UTC (permalink / raw)
  To: gregkh
  Cc: devel, linux-wireless, tony.cho, glen.lee, leo.kim, austin.shin,
	adel.noureldin, 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

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 | 350 +++++++---------------
 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, 439 insertions(+), 590 deletions(-)

-- 
1.9.1


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

end of thread, other threads:[~2016-01-24 20:57 UTC | newest]

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

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.