public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH 00/16] wilc1000: dead code removal and other cleanup
@ 2015-05-29 20:52 Arnd Bergmann
  2015-05-29 20:52 ` [PATCH 01/16] staging: wilc1000: remove linux version checks Arnd Bergmann
                   ` (15 more replies)
  0 siblings, 16 replies; 21+ messages in thread
From: Arnd Bergmann @ 2015-05-29 20:52 UTC (permalink / raw)
  To: Greg KH
  Cc: Rachel Kim, Dean Lee, Chris Park, devel, nicolas.ferre,
	Johnny Kim, linux-kernel, Arnd Bergmann

Hi Greg,

This turned out to be more work than the first version, but I
think I've split it up enough sensibly to allow review, and
I've added a few more patches at the end.

	Arnd

Arnd Bergmann (16):
  staging: wilc1000: remove linux version checks
  staging: wilc1000: remove platform version checks
  staging: wilc1000: remove thread wrapper
  staging: wilc1000: remove __DRIVER_VERSION__ macro
  staging: wilc1000: remove time wrapper
  staging: wilc1000: remove unused string functions
  staging: wilc1000: simplify msgqueue code
  staging: wilc1000: remove unused memory handling code
  staging: wilc1000: simplify semaphore wrapper
  staging: wilc1000: clean up sleep wrapper
  staging: wilc1000: clean up timer feature
  staging: wilc1000: remove unused OS abstraction features
  staging: wilc1000: remove EXPORT_SYMTAB
  staging: wilc1000: remove semaphore wrapper
  staging: wilc1000: fix const cast warnings
  staging: wilc1000: fix compiler warnings

 drivers/staging/wilc1000/Makefile                 |  13 +-
 drivers/staging/wilc1000/coreconfigurator.c       |  31 +-
 drivers/staging/wilc1000/fifo_buffer.c            | 108 ++---
 drivers/staging/wilc1000/fifo_buffer.h            |   2 +-
 drivers/staging/wilc1000/host_interface.c         | 219 ++++-----
 drivers/staging/wilc1000/host_interface.h         |  40 +-
 drivers/staging/wilc1000/linux_mon.c              |   2 +-
 drivers/staging/wilc1000/linux_wlan.c             |  98 +---
 drivers/staging/wilc1000/linux_wlan_spi.c         |   3 -
 drivers/staging/wilc1000/wilc_errorsupport.h      |  17 -
 drivers/staging/wilc1000/wilc_event.h             | 123 -----
 drivers/staging/wilc1000/wilc_memory.c            |   7 +-
 drivers/staging/wilc1000/wilc_memory.h            |  95 +---
 drivers/staging/wilc1000/wilc_msgqueue.c          |  41 +-
 drivers/staging/wilc1000/wilc_msgqueue.h          |  30 --
 drivers/staging/wilc1000/wilc_osconfig.h          |  46 --
 drivers/staging/wilc1000/wilc_oswrapper.h         |  61 ---
 drivers/staging/wilc1000/wilc_platform.h          | 131 +-----
 drivers/staging/wilc1000/wilc_semaphore.c         |  70 ---
 drivers/staging/wilc1000/wilc_semaphore.h         | 115 -----
 drivers/staging/wilc1000/wilc_sleep.c             |  18 -
 drivers/staging/wilc1000/wilc_sleep.h             |  30 +-
 drivers/staging/wilc1000/wilc_spi.c               |   4 +-
 drivers/staging/wilc1000/wilc_strutils.c          | 351 --------------
 drivers/staging/wilc1000/wilc_strutils.h          | 282 ------------
 drivers/staging/wilc1000/wilc_thread.c            |  35 --
 drivers/staging/wilc1000/wilc_thread.h            | 153 -------
 drivers/staging/wilc1000/wilc_time.c              | 163 -------
 drivers/staging/wilc1000/wilc_time.h              | 205 ---------
 drivers/staging/wilc1000/wilc_timer.c             |   6 -
 drivers/staging/wilc1000/wilc_timer.h             |  27 --
 drivers/staging/wilc1000/wilc_wfi_cfgoperations.c | 533 +---------------------
 drivers/staging/wilc1000/wilc_wfi_cfgoperations.h |   9 +-
 drivers/staging/wilc1000/wilc_wfi_netdevice.h     |  12 +-
 drivers/staging/wilc1000/wilc_wlan.c              |   6 +-
 35 files changed, 226 insertions(+), 2860 deletions(-)
 delete mode 100644 drivers/staging/wilc1000/wilc_event.h
 delete mode 100644 drivers/staging/wilc1000/wilc_semaphore.c
 delete mode 100644 drivers/staging/wilc1000/wilc_semaphore.h
 delete mode 100644 drivers/staging/wilc1000/wilc_thread.c
 delete mode 100644 drivers/staging/wilc1000/wilc_thread.h
 delete mode 100644 drivers/staging/wilc1000/wilc_time.c
 delete mode 100644 drivers/staging/wilc1000/wilc_time.h

-- 
2.1.0.rc2


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

end of thread, other threads:[~2015-06-01 19:10 UTC | newest]

Thread overview: 21+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-05-29 20:52 [PATCH 00/16] wilc1000: dead code removal and other cleanup Arnd Bergmann
2015-05-29 20:52 ` [PATCH 01/16] staging: wilc1000: remove linux version checks Arnd Bergmann
2015-05-29 20:52 ` [PATCH 02/16] staging: wilc1000: remove platform " Arnd Bergmann
2015-05-29 20:52 ` [PATCH 03/16] staging: wilc1000: remove thread wrapper Arnd Bergmann
2015-05-29 20:52 ` [PATCH 04/16] staging: wilc1000: remove __DRIVER_VERSION__ macro Arnd Bergmann
2015-05-29 20:52 ` [PATCH 05/16] staging: wilc1000: remove time wrapper Arnd Bergmann
2015-05-30  6:39   ` Sudip Mukherjee
2015-05-30 23:58     ` Greg KH
2015-06-01 19:09       ` Arnd Bergmann
2015-05-29 20:52 ` [PATCH 06/16] staging: wilc1000: remove unused string functions Arnd Bergmann
2015-05-29 20:52 ` [PATCH 07/16] staging: wilc1000: simplify msgqueue code Arnd Bergmann
2015-05-29 20:52 ` [PATCH 08/16] staging: wilc1000: remove unused memory handling code Arnd Bergmann
2015-05-29 20:52 ` [PATCH 09/16] staging: wilc1000: simplify semaphore wrapper Arnd Bergmann
2015-05-29 20:52 ` [PATCH 10/16] staging: wilc1000: clean up sleep wrapper Arnd Bergmann
2015-05-29 20:52 ` [PATCH 11/16] staging: wilc1000: clean up timer feature Arnd Bergmann
2015-05-29 20:52 ` [PATCH 12/16] staging: wilc1000: remove unused OS abstraction features Arnd Bergmann
2015-05-29 20:52 ` [PATCH 13/16] staging: wilc1000: remove EXPORT_SYMTAB Arnd Bergmann
2015-05-29 20:52 ` [PATCH 14/16] staging: wilc1000: remove semaphore wrapper Arnd Bergmann
2015-05-30  6:46   ` Sudip Mukherjee
2015-05-29 20:52 ` [PATCH 15/16] staging: wilc1000: fix const cast warnings Arnd Bergmann
2015-05-29 20:52 ` [PATCH 16/16] staging: wilc1000: fix compiler warnings Arnd Bergmann

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox