mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
From: Arnd Bergmann <arnd@arndb.de>
To: Greg KH <gregkh@linuxfoundation.org>
Cc: Rachel Kim <rachel.kim@atmel.com>, Dean Lee <dean.lee@atmel.com>,
	Chris Park <chris.park@atmel.com>,
	devel@driverdev.osuosl.org, nicolas.ferre@atmel.com,
	Johnny Kim <johnny.kim@atmel.com>,
	linux-kernel@vger.kernel.org, Arnd Bergmann <arnd@arndb.de>
Subject: [PATCH 00/16] wilc1000: dead code removal and other cleanup
Date: Fri, 29 May 2015 22:52:11 +0200	[thread overview]
Message-ID: <1432932747-3739705-1-git-send-email-arnd@arndb.de> (raw)

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


             reply	other threads:[~2015-05-29 20:53 UTC|newest]

Thread overview: 21+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-05-29 20:52 Arnd Bergmann [this message]
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

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1432932747-3739705-1-git-send-email-arnd@arndb.de \
    --to=arnd@arndb.de \
    --cc=chris.park@atmel.com \
    --cc=dean.lee@atmel.com \
    --cc=devel@driverdev.osuosl.org \
    --cc=gregkh@linuxfoundation.org \
    --cc=johnny.kim@atmel.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=nicolas.ferre@atmel.com \
    --cc=rachel.kim@atmel.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

all inboxes | Powered by JetHome®