All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v3 00/21] Clean up header files and remove unused structures
@ 2016-09-02 20:41 David Kershner
  2016-09-02 20:41 ` [PATCH v3 01/21] staging: unisys: visorchipset.c remove unused pound defines David Kershner
                   ` (21 more replies)
  0 siblings, 22 replies; 24+ messages in thread
From: David Kershner @ 2016-09-02 20:41 UTC (permalink / raw)
  To: gregkh, driverdev-devel, sparmaintainer, jes.sorensen

This patch series starts the process of addressing the issues
raised by Greg-KH on 08/21/2016, more patches will be coming. 

This patch series removes unused defines and structures in visorbus. 

It also combines and simplifies the headers files for the s-Par
drivers.

Changes since v2: 
	-- Refined which patches have the Reported-by: flag
	-- Removed erroneous change from visorbus_main.c from patch 
	   staging: unisys: visorbus: cleanup include listings
Changes since original submission: 
	-- Added Reported-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
	   to each patch. 


Bryan Thompson (3):
  staging: unisys: Move vbushelper.h contents to visorbus_private.h
  staging: unisys: visorinput: Update visorinput.c includes
  staging: unisys: visorinput: Remove ultrainputreport.h include

David Binder (2):
  staging: unisys: visorbus: Convert visorchipset.h refs
  staging: unisys: visorbus: Merge channel_guid.h with channel.h

David Kershner (9):
  staging: unisys: visorbus: Merge controlvm completion status to
    controlvmchannel
  staging: unisys: visorbus: Reorder functions to avoid including header
  staging: unisys: visorbus: merge vbusdeviceinfo.h into vbuschannel
  staging: unisys: visorbus: Merge iovmcall_gnuc into vmcallinterface
  staging: unisys: visorbus: remove include for vbuschannel.h
  staging: unisys: visorbus: Move non global guestlinuxdebug to visorbus
  staging: unisys: remove check for GNUC
  staging: unisys: visorbus: merge guestlinuxdebug with
    vmcallinterface.h
  staging: unisys: visorbus: cleanup include listings

Erik Arfvidson (4):
  staging: unisys: visorchipset.c remove unused pound defines
  staging: unisys: visorbus_main.c remove unused pound defines
  staging: unisys: visornic_main.c remove unused pound defines
  staging: unisys: merge diagchannel.h to visorbus.h

Jon Frisch (3):
  staging: unisys: visorbus: remove g_devicechangestate_packet
  staging: unisys: visorbus: remove unused lists
  staging: unisys: visorbus: remove putfile_buffer_entry

 drivers/staging/unisys/include/channel.h           |  41 ++++
 drivers/staging/unisys/include/channel_guid.h      |  55 -----
 drivers/staging/unisys/include/diagchannel.h       |  38 ----
 drivers/staging/unisys/include/guestlinuxdebug.h   | 180 ---------------
 drivers/staging/unisys/include/iochannel.h         |   1 -
 drivers/staging/unisys/include/visorbus.h          |  19 ++
 drivers/staging/unisys/visorbus/controlvmchannel.h |  76 +++++++
 .../unisys/visorbus/controlvmcompletionstatus.h    | 101 ---------
 drivers/staging/unisys/visorbus/iovmcall_gnuc.h    |  48 ----
 drivers/staging/unisys/visorbus/vbuschannel.h      | 212 +++++++++++++++++-
 drivers/staging/unisys/visorbus/vbusdeviceinfo.h   | 234 --------------------
 drivers/staging/unisys/visorbus/vbushelper.h       |  46 ----
 drivers/staging/unisys/visorbus/visorbus_main.c    |   5 -
 drivers/staging/unisys/visorbus/visorbus_private.h |  34 ++-
 drivers/staging/unisys/visorbus/visorchannel.c     | 245 ++++++++++-----------
 drivers/staging/unisys/visorbus/visorchipset.c     |  28 ---
 drivers/staging/unisys/visorbus/vmcallinterface.h  | 190 +++++++++++++++-
 .../staging/unisys/visorinput/ultrainputreport.h   |   2 -
 drivers/staging/unisys/visorinput/visorinput.c     |   1 -
 drivers/staging/unisys/visornic/visornic_main.c    |   2 -
 20 files changed, 682 insertions(+), 876 deletions(-)
 delete mode 100644 drivers/staging/unisys/include/channel_guid.h
 delete mode 100644 drivers/staging/unisys/include/diagchannel.h
 delete mode 100644 drivers/staging/unisys/include/guestlinuxdebug.h
 delete mode 100644 drivers/staging/unisys/visorbus/controlvmcompletionstatus.h
 delete mode 100644 drivers/staging/unisys/visorbus/iovmcall_gnuc.h
 delete mode 100644 drivers/staging/unisys/visorbus/vbusdeviceinfo.h
 delete mode 100644 drivers/staging/unisys/visorbus/vbushelper.h

-- 
1.9.1

_______________________________________________
devel mailing list
devel@linuxdriverproject.org
http://driverdev.linuxdriverproject.org/mailman/listinfo/driverdev-devel

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

end of thread, other threads:[~2016-09-12 11:25 UTC | newest]

Thread overview: 24+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-09-02 20:41 [PATCH v3 00/21] Clean up header files and remove unused structures David Kershner
2016-09-02 20:41 ` [PATCH v3 01/21] staging: unisys: visorchipset.c remove unused pound defines David Kershner
2016-09-02 20:41 ` [PATCH v3 02/21] staging: unisys: visorbus_main.c " David Kershner
2016-09-02 20:41 ` [PATCH v3 03/21] staging: unisys: visornic_main.c " David Kershner
2016-09-02 20:41 ` [PATCH v3 04/21] staging: unisys: visorbus: remove g_devicechangestate_packet David Kershner
2016-09-02 20:41 ` [PATCH v3 05/21] staging: unisys: visorbus: remove unused lists David Kershner
2016-09-02 20:41 ` [PATCH v3 06/21] staging: unisys: visorbus: remove putfile_buffer_entry David Kershner
2016-09-02 20:41 ` [PATCH v3 07/21] staging: unisys: Move vbushelper.h contents to visorbus_private.h David Kershner
2016-09-12 11:25   ` Greg KH
2016-09-02 20:41 ` [PATCH v3 08/21] staging: unisys: visorbus: Convert visorchipset.h refs David Kershner
2016-09-02 20:41 ` [PATCH v3 09/21] staging: unisys: visorbus: Merge channel_guid.h with channel.h David Kershner
2016-09-02 20:41 ` [PATCH v3 10/21] staging: unisys: visorinput: Update visorinput.c includes David Kershner
2016-09-02 20:41 ` [PATCH v3 11/21] staging: unisys: visorinput: Remove ultrainputreport.h include David Kershner
2016-09-02 20:41 ` [PATCH v3 12/21] staging: unisys: merge diagchannel.h to visorbus.h David Kershner
2016-09-02 20:41 ` [PATCH v3 13/21] staging: unisys: visorbus: Merge controlvm completion status to controlvmchannel David Kershner
2016-09-02 20:41 ` [PATCH v3 14/21] staging: unisys: visorbus: Reorder functions to avoid including header David Kershner
2016-09-02 20:41 ` [PATCH v3 15/21] staging: unisys: visorbus: merge vbusdeviceinfo.h into vbuschannel David Kershner
2016-09-02 20:41 ` [PATCH v3 16/21] staging: unisys: visorbus: Merge iovmcall_gnuc into vmcallinterface David Kershner
2016-09-02 20:41 ` [PATCH v3 17/21] staging: unisys: visorbus: remove include for vbuschannel.h David Kershner
2016-09-02 20:41 ` [PATCH v3 18/21] staging: unisys: visorbus: Move non global guestlinuxdebug to visorbus David Kershner
2016-09-02 20:41 ` [PATCH v3 19/21] staging: unisys: remove check for GNUC David Kershner
2016-09-02 20:41 ` [PATCH v3 20/21] staging: unisys: visorbus: merge guestlinuxdebug with vmcallinterface.h David Kershner
2016-09-02 20:41 ` [PATCH v3 21/21] staging: unisys: visorbus: cleanup include listings David Kershner
2016-09-12 11:23 ` [PATCH v3 00/21] Clean up header files and remove unused structures Greg KH

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.