All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 00/26] staging: wilc1000: tidy up sdio/spi
@ 2015-11-06  9:39 Glen Lee
  2015-11-06  9:39 ` [PATCH 01/26] staging: wilc1000: separate hif_sdio and hif_spi into different module Glen Lee
                   ` (25 more replies)
  0 siblings, 26 replies; 29+ messages in thread
From: Glen Lee @ 2015-11-06  9:39 UTC (permalink / raw)
  To: gregkh
  Cc: devel, linux-wireless, tony.cho, glen.lee, leo.kim, austin.shin,
	adel.noureldin, adham.abozaeid, Nicolas.FERRE

wilc1000 sdio has two different files such as wilc_sdio and linux_wlan_sdio.
linux_wlan_sdio is for linux and wilc_sdio is implemented os independently at
the beginning. The drivers is now for LINUX so we will integrate them into one
file like spi.c and sdio.c.
This is first series to tidy up sdio/spi before integrate them.

Glen Lee (26):
  staging: wilc1000: separate hif_sdio and hif_spi into different module
  staging: wilc1000: remove function pointer sdio_cmd52
  staging: wilc1000: remove sdio_cmd52 of wilc_wlan_io_func_t
  staging: wilc1000: remove function pointer sdio_cmd53
  staging: wilc1000: remove sdio_cmd53 of wilc_wlan_io_func_t
  staging: wilc1000: remove function pointer sdio_set_max_speed
  staging: wilc1000: remove sdio_set_max_speed
  staging: wilc1000: remove function pointer sdio_set_default_speed
  staging: wilc1000: remove varialbe sdio_set_default_speed
  staging: wilc1000: call linux_sdio_init instead of io_init
  staging: wilc1000: wilc_spi.c: add prefix wilc in all function name
  staging: wilc1000: remove function pointer spi_tx of wilc_spi_t
  staging: wilc1000: remove function pointer spi_tx of
    wilc_wlan_io_function_t
  staging: wilc1000: remove function pointer spi_rx of wilc_spi_t
  staging: wilc1000: remove function pointer spi_rx of
    wilc_wlan_io_func_t
  staging: wilc1000: remove function pointer spi_trx
  staging: wilc1000: remove spi_trx of wilc_wlan_io_func_t
  staging: wilc1000: remove function pointer spi_max_speed
  staging: wilc1000: remove spi_max_speed of wilc_wlan_io_func_t
  staging: wilc1000: remove function pointer io_init
  staging: wilc1000: remove unused function pointer io_deinit
  staging: wilc1000: linux_sdio_init: remove parameter pv
  staging: wilc1000: linux_spi_init: remove parameter vp
  staging: wilc1000: remove os_context
  staging: wilc1000: change parameter type of hif_init
  staging: wilc1000: remove os_private

 drivers/staging/wilc1000/Makefile          |   6 +-
 drivers/staging/wilc1000/linux_wlan.c      |  16 +--
 drivers/staging/wilc1000/linux_wlan_sdio.c |   2 +-
 drivers/staging/wilc1000/linux_wlan_sdio.h |   2 +-
 drivers/staging/wilc1000/linux_wlan_spi.c  |   2 +-
 drivers/staging/wilc1000/linux_wlan_spi.h  |   2 +-
 drivers/staging/wilc1000/wilc_sdio.c       |  89 +++++++---------
 drivers/staging/wilc1000/wilc_spi.c        | 162 ++++++++++++++---------------
 drivers/staging/wilc1000/wilc_wlan.c       |  40 +++----
 drivers/staging/wilc1000/wilc_wlan.h       |   4 +-
 drivers/staging/wilc1000/wilc_wlan_if.h    |  21 ----
 11 files changed, 146 insertions(+), 200 deletions(-)

-- 
1.9.1


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

end of thread, other threads:[~2015-11-06 22:49 UTC | newest]

Thread overview: 29+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-11-06  9:39 [PATCH 00/26] staging: wilc1000: tidy up sdio/spi Glen Lee
2015-11-06  9:39 ` [PATCH 01/26] staging: wilc1000: separate hif_sdio and hif_spi into different module Glen Lee
2015-11-06 22:45   ` Greg KH
2015-11-06 22:49     ` Greg KH
2015-11-06  9:39 ` [PATCH 02/26] staging: wilc1000: remove function pointer sdio_cmd52 Glen Lee
2015-11-06  9:40 ` [PATCH 03/26] staging: wilc1000: remove sdio_cmd52 of wilc_wlan_io_func_t Glen Lee
2015-11-06  9:40 ` [PATCH 04/26] staging: wilc1000: remove function pointer sdio_cmd53 Glen Lee
2015-11-06  9:40 ` [PATCH 05/26] staging: wilc1000: remove sdio_cmd53 of wilc_wlan_io_func_t Glen Lee
2015-11-06  9:40 ` [PATCH 06/26] staging: wilc1000: remove function pointer sdio_set_max_speed Glen Lee
2015-11-06  9:40 ` [PATCH 07/26] staging: wilc1000: remove sdio_set_max_speed Glen Lee
2015-11-06  9:40 ` [PATCH 08/26] staging: wilc1000: remove function pointer sdio_set_default_speed Glen Lee
2015-11-06  9:40 ` [PATCH 09/26] staging: wilc1000: remove varialbe sdio_set_default_speed Glen Lee
2015-11-06  9:40 ` [PATCH 10/26] staging: wilc1000: call linux_sdio_init instead of io_init Glen Lee
2015-11-06  9:40 ` [PATCH 11/26] staging: wilc1000: wilc_spi.c: add prefix wilc in all function name Glen Lee
2015-11-06  9:40 ` [PATCH 12/26] staging: wilc1000: remove function pointer spi_tx of wilc_spi_t Glen Lee
2015-11-06  9:40 ` [PATCH 13/26] staging: wilc1000: remove function pointer spi_tx of wilc_wlan_io_function_t Glen Lee
2015-11-06  9:40 ` [PATCH 14/26] staging: wilc1000: remove function pointer spi_rx of wilc_spi_t Glen Lee
2015-11-06  9:40 ` [PATCH 15/26] staging: wilc1000: remove function pointer spi_rx of wilc_wlan_io_func_t Glen Lee
2015-11-06  9:40 ` [PATCH 16/26] staging: wilc1000: remove function pointer spi_trx Glen Lee
2015-11-06  9:40 ` [PATCH 17/26] staging: wilc1000: remove spi_trx of wilc_wlan_io_func_t Glen Lee
2015-11-06  9:40 ` [PATCH 18/26] staging: wilc1000: remove function pointer spi_max_speed Glen Lee
2015-11-06  9:40 ` [PATCH 19/26] staging: wilc1000: remove spi_max_speed of wilc_wlan_io_func_t Glen Lee
2015-11-06  9:40 ` [PATCH 20/26] staging: wilc1000: remove function pointer io_init Glen Lee
2015-11-06  9:40 ` [PATCH 21/26] staging: wilc1000: remove unused function pointer io_deinit Glen Lee
2015-11-06  9:40 ` [PATCH 22/26] staging: wilc1000: linux_sdio_init: remove parameter pv Glen Lee
2015-11-06  9:40 ` [PATCH 23/26] staging: wilc1000: linux_spi_init: remove parameter vp Glen Lee
2015-11-06  9:40 ` [PATCH 24/26] staging: wilc1000: remove os_context Glen Lee
2015-11-06  9:40 ` [PATCH 25/26] staging: wilc1000: change parameter type of hif_init Glen Lee
2015-11-06  9:40 ` [PATCH 26/26] staging: wilc1000: remove os_private 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.