All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH RESEND 00/46] Rebase and resend
@ 2015-12-21  5:18 Glen Lee
  2015-12-21  5:18 ` [PATCH RESEND 01/46] staging: wilc1000: remove define COMPLEMENT_BOOT Glen Lee
                   ` (45 more replies)
  0 siblings, 46 replies; 49+ messages in thread
From: Glen Lee @ 2015-12-21  5:18 UTC (permalink / raw)
  To: gregkh
  Cc: devel, linux-wireless, tony.cho, glen.lee, leo.kim, austin.shin,
	adel.noureldin, adham.abozaeid, Nicolas.FERRE

As requested, I rebased all of my pending patches on staging-testing branch
and resend what is not applied.

Glen Lee (42):
  staging: wilc1000: remove define COMPLEMENT_BOOT
  staging: wilc1000: remove wilc memory allocation config
  staging: wilc1000: rename index to tcp_pending_ack_idx
  staging: wilc1000: use kernel define byte order macros
  staging: wilc1000: wilc_wlan.c: remove hif_func of wilc_wlan_dev_t
  staging: wilc1000: remove io_type of wilc_wlan_dev_t
  staging: wilc1000: remove unused varialbe tx_buffer_offset
  staging: wilc1000: move all of wilc_wlan_dev_t to struct wilc
  staging: wilc1000: sdio/spi: use device print api instead of custom
    one
  staging: wilc1000: remove wilc_debug_func of hif_init
  staging: wilc1000: remove unused functions
  staging: wilc1000: linux_wlan_sdio.c: fix checkpatch warning line over
    80
  staging: wilc1000: linux_wlan_sdio.c: remove braces
  staging: wilc1000: wilc_sdio_cmd53: return linux error value
  staging: wilc1000: wilc_sdio_cmd52: return linux error value
  staging: wilc1000: linux_wlan_spi.c: remove braces for single
    statement
  staging: wilc1000: linux_wlan_spi.c: add a blank
  staging: wilc1000: linux_wlan_spi.c: fix NULL comparison style
  staging: wilc1000: linux_wlan_spi.c: return linux error value
  staging: wilc1000: linux_sdio_probe: use return value
  staging: wilc1000: linux_wlan_sdio.c: move all the codes to
    wilc_sdio.c
  staging: wilc1000: remove unused files
  staging: wilc1000: rename spi function names
  staging: wilc1000: remove unneeded function
  staging: wilc1000: linux_wlan_spi.c: move all the codes to wilc_spi.c
  staging: wilc1000: remove unused files
  staging: wilc1000: remove unneeded extern variable
  staging: wilc1000: move perInterface_wlan_t to wilc_vif
  staging: wilc1000: change vif to pointer to refence real private data
  staging: wilc1000: remove duplicate netdev
  staging: wilc1000: pass vif to hostIFthread
  staging: wilc1000: remove argument hif_drv
  staging: wilc1000: take vif instead of drv in hostIFthread
  staging: wilc1000: pass struct wilc
  staging: wilc1000: use vif index to communicate with wilc device
  staging: wilc1000: wilc_set_wfi_drv_handler: pass vif index
  staging: wilc1000: change join_req_drv type and it's name
  staging: wilc1000: remove used functions
  staging: wilc1000: remove drv of struct host_if_msg
  staging: wilc1000: remove wilc of struct host_if_drv
  staging: wilc1000: set hif_drv before it is used
  staging: wilc1000: bug fix on memory free

Leo Kim (4):
  staging: wilc1000: replace explicit NULL comparisons with !
  staging: wilc1000: fixes potential null dereference 'wid.val'
  staging: wilc1000: wilc_init(): fixes inconsistent returns
  staging: wilc1000: wilc_deinit(): fixes inconsistent returns

 drivers/staging/wilc1000/Kconfig                  |  22 -
 drivers/staging/wilc1000/Makefile                 |  14 +-
 drivers/staging/wilc1000/coreconfigurator.h       |  11 +-
 drivers/staging/wilc1000/host_interface.c         | 803 +++++++++++-----------
 drivers/staging/wilc1000/host_interface.h         | 144 ++--
 drivers/staging/wilc1000/linux_wlan.c             | 342 ++++-----
 drivers/staging/wilc1000/linux_wlan_common.h      |   2 -
 drivers/staging/wilc1000/linux_wlan_sdio.c        | 170 -----
 drivers/staging/wilc1000/linux_wlan_sdio.h        |   8 -
 drivers/staging/wilc1000/linux_wlan_spi.c         | 191 -----
 drivers/staging/wilc1000/linux_wlan_spi.h         |  11 -
 drivers/staging/wilc1000/wilc_sdio.c              | 464 ++++++++-----
 drivers/staging/wilc1000/wilc_spi.c               | 417 +++++++----
 drivers/staging/wilc1000/wilc_wfi_cfgoperations.c | 480 +++++++------
 drivers/staging/wilc1000/wilc_wfi_netdevice.h     |  47 +-
 drivers/staging/wilc1000/wilc_wlan.c              | 571 +++++++--------
 drivers/staging/wilc1000/wilc_wlan.h              |  17 +-
 drivers/staging/wilc1000/wilc_wlan_cfg.c          |  25 +-
 drivers/staging/wilc1000/wilc_wlan_cfg.h          |   4 +-
 19 files changed, 1771 insertions(+), 1972 deletions(-)
 delete mode 100644 drivers/staging/wilc1000/linux_wlan_sdio.c
 delete mode 100644 drivers/staging/wilc1000/linux_wlan_sdio.h
 delete mode 100644 drivers/staging/wilc1000/linux_wlan_spi.c
 delete mode 100644 drivers/staging/wilc1000/linux_wlan_spi.h

-- 
1.9.1


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

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

Thread overview: 49+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-12-21  5:18 [PATCH RESEND 00/46] Rebase and resend Glen Lee
2015-12-21  5:18 ` [PATCH RESEND 01/46] staging: wilc1000: remove define COMPLEMENT_BOOT Glen Lee
2015-12-21  5:18 ` [PATCH RESEND 02/46] staging: wilc1000: remove wilc memory allocation config Glen Lee
2015-12-21  5:18 ` [PATCH RESEND 03/46] staging: wilc1000: rename index to tcp_pending_ack_idx Glen Lee
2015-12-21 21:17   ` Greg KH
2015-12-22  1:53     ` glen lee
2015-12-21  5:18 ` [PATCH RESEND 04/46] staging: wilc1000: use kernel define byte order macros Glen Lee
2015-12-21  5:18 ` [PATCH RESEND 05/46] staging: wilc1000: wilc_wlan.c: remove hif_func of wilc_wlan_dev_t Glen Lee
2015-12-21  5:18 ` [PATCH RESEND 06/46] staging: wilc1000: remove io_type " Glen Lee
2015-12-21  5:18 ` [PATCH RESEND 07/46] staging: wilc1000: remove unused varialbe tx_buffer_offset Glen Lee
2015-12-21  5:18 ` [PATCH RESEND 08/46] staging: wilc1000: move all of wilc_wlan_dev_t to struct wilc Glen Lee
2015-12-21  5:18 ` [PATCH RESEND 09/46] staging: wilc1000: sdio/spi: use device print api instead of custom one Glen Lee
2015-12-21  5:18 ` [PATCH RESEND 10/46] staging: wilc1000: remove wilc_debug_func of hif_init Glen Lee
2015-12-21  5:18 ` [PATCH RESEND 11/46] staging: wilc1000: remove unused functions Glen Lee
2015-12-21  5:18 ` [PATCH RESEND 12/46] staging: wilc1000: linux_wlan_sdio.c: fix checkpatch warning line over 80 Glen Lee
2015-12-21  5:18 ` [PATCH RESEND 13/46] staging: wilc1000: linux_wlan_sdio.c: remove braces Glen Lee
2015-12-21  5:18 ` [PATCH RESEND 14/46] staging: wilc1000: wilc_sdio_cmd53: return linux error value Glen Lee
2015-12-21  5:18 ` [PATCH RESEND 15/46] staging: wilc1000: wilc_sdio_cmd52: " Glen Lee
2015-12-21  5:18 ` [PATCH RESEND 16/46] staging: wilc1000: linux_wlan_spi.c: remove braces for single statement Glen Lee
2015-12-21  5:18 ` [PATCH RESEND 17/46] staging: wilc1000: linux_wlan_spi.c: add a blank Glen Lee
2015-12-21  5:18 ` [PATCH RESEND 18/46] staging: wilc1000: linux_wlan_spi.c: fix NULL comparison style Glen Lee
2015-12-21  5:18 ` [PATCH RESEND 19/46] staging: wilc1000: replace explicit NULL comparisons with ! Glen Lee
2015-12-21  5:18 ` [PATCH RESEND 20/46] staging: wilc1000: fixes potential null dereference 'wid.val' Glen Lee
2015-12-21  5:18 ` [PATCH RESEND 21/46] staging: wilc1000: wilc_init(): fixes inconsistent returns Glen Lee
2015-12-21  5:18 ` [PATCH RESEND 22/46] staging: wilc1000: wilc_deinit(): " Glen Lee
2015-12-21  5:18 ` [PATCH RESEND 23/46] staging: wilc1000: linux_wlan_spi.c: return linux error value Glen Lee
2015-12-21  5:18 ` [PATCH RESEND 24/46] staging: wilc1000: linux_sdio_probe: use return value Glen Lee
2015-12-21  5:18 ` [PATCH RESEND 25/46] staging: wilc1000: linux_wlan_sdio.c: move all the codes to wilc_sdio.c Glen Lee
2015-12-21  5:18 ` [PATCH RESEND 26/46] staging: wilc1000: remove unused files Glen Lee
2015-12-21  5:18 ` [PATCH RESEND 27/46] staging: wilc1000: rename spi function names Glen Lee
2015-12-21  5:18 ` [PATCH RESEND 28/46] staging: wilc1000: remove unneeded function Glen Lee
2015-12-21  5:18 ` [PATCH RESEND 29/46] staging: wilc1000: linux_wlan_spi.c: move all the codes to wilc_spi.c Glen Lee
2015-12-21  5:18 ` [PATCH RESEND 30/46] staging: wilc1000: remove unused files Glen Lee
2015-12-21  5:18 ` [PATCH RESEND 31/46] staging: wilc1000: remove unneeded extern variable Glen Lee
2015-12-21  5:18 ` [PATCH RESEND 32/46] staging: wilc1000: move perInterface_wlan_t to wilc_vif Glen Lee
2015-12-21  5:18 ` [PATCH RESEND 33/46] staging: wilc1000: change vif to pointer to refence real private data Glen Lee
2015-12-21  5:18 ` [PATCH RESEND 34/46] staging: wilc1000: remove duplicate netdev Glen Lee
2015-12-21  5:18 ` [PATCH RESEND 35/46] staging: wilc1000: pass vif to hostIFthread Glen Lee
2015-12-21  5:18 ` [PATCH RESEND 36/46] staging: wilc1000: remove argument hif_drv Glen Lee
2015-12-21  5:18 ` [PATCH RESEND 37/46] staging: wilc1000: take vif instead of drv in hostIFthread Glen Lee
2015-12-21  5:18 ` [PATCH RESEND 38/46] staging: wilc1000: pass struct wilc Glen Lee
2015-12-21  5:18 ` [PATCH RESEND 39/46] staging: wilc1000: use vif index to communicate with wilc device Glen Lee
2015-12-21  5:18 ` [PATCH RESEND 40/46] staging: wilc1000: wilc_set_wfi_drv_handler: pass vif index Glen Lee
2015-12-21  5:18 ` [PATCH RESEND 41/46] staging: wilc1000: change join_req_drv type and it's name Glen Lee
2015-12-21  5:18 ` [PATCH RESEND 42/46] staging: wilc1000: remove used functions Glen Lee
2015-12-21  5:18 ` [PATCH RESEND 43/46] staging: wilc1000: remove drv of struct host_if_msg Glen Lee
2015-12-21  5:18 ` [PATCH RESEND 44/46] staging: wilc1000: remove wilc of struct host_if_drv Glen Lee
2015-12-21  5:18 ` [PATCH RESEND 45/46] staging: wilc1000: set hif_drv before it is used Glen Lee
2015-12-21  5:18 ` [PATCH RESEND 46/46] staging: wilc1000: bug fix on memory free 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.