[PATCH 06/21] staging: unisys: visorbus: remove putfile_buffer_entry

2016-09-01 Thread David Kershner
From: Jon Frisch This patch removes the unused struct putfile_buffer_entry. Signed-off-by: Jon Frisch Signed-off-by: David Kershner --- drivers/staging/unisys/visorbus/visorchipset.c | 9 - 1 file changed, 9 deletions(-) diff --git a/drivers/staging/unisys/visorbus/visorchipset.c b

[PATCH 10/21] staging: unisys: visorinput: Update visorinput.c includes

2016-09-01 Thread David Kershner
From: Bryan Thompson Remove unnecessary channel.h include from visorinput.c. Signed-off-by: Bryan Thompson Signed-off-by: David Kershner Reviewed-by: Tim Sell --- drivers/staging/unisys/visorinput/visorinput.c | 1 - 1 file changed, 1 deletion(-) diff --git a/drivers/staging/unisys

[PATCH 01/21] staging: unisys: visorchipset.c remove unused pound defines

2016-09-01 Thread David Kershner
From: Erik Arfvidson This removes three unused pound defines in the visorchipset.c file. Signed-off-by: Erik Arfvidson Signed-off-by: David Kershner --- drivers/staging/unisys/visorbus/visorchipset.c | 3 --- 1 file changed, 3 deletions(-) diff --git a/drivers/staging/unisys/visorbus

[PATCH 15/21] staging: unisys: visorbus: merge vbusdeviceinfo.h into vbuschannel

2016-09-01 Thread David Kershner
vbusdeviceinfo.h was only used by vbuschannel.h so merge them together. Signed-off-by: David Kershner Reviewed-by: Tim Sell --- drivers/staging/unisys/visorbus/vbuschannel.h | 212 ++- drivers/staging/unisys/visorbus/vbusdeviceinfo.h | 234 - drivers

[PATCH 12/21] staging: unisys: merge diagchannel.h to visorbus.h

2016-09-01 Thread David Kershner
From: Erik Arfvidson It is pointless to have a dedicated include for another include. So I merged them together. Signed-off-by: Erik Arfvidson Signed-off-by: David Kershner Reviewed-by: Tim Sell --- drivers/staging/unisys/include/diagchannel.h | 38 --- drivers

[PATCH 00/21] Clean up header files and remove unused structures

2016-09-01 Thread David Kershner
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

[PATCH 17/21] staging: unisys: visorbus: remove include for vbuschannel.h

2016-09-01 Thread David Kershner
visorbus_main.c does not need to include vbuschannel.h. Signed-off-by: David Kershner Reviewed-by: Tim Sell --- drivers/staging/unisys/visorbus/visorbus_main.c | 1 - 1 file changed, 1 deletion(-) diff --git a/drivers/staging/unisys/visorbus/visorbus_main.c b/drivers/staging/unisys/visorbus

[PATCH 05/21] staging: unisys: visorbus: remove unused lists

2016-09-01 Thread David Kershner
From: Jon Frisch This patch removes the following lists that were never used: LIST_HEAD(bus_info_list) LIST_HEAD(dev_info_list) LIST_HEAD(putfile_request_list) Signed-off-by: Jon Frisch Signed-off-by: David Kershner --- drivers/staging/unisys/visorbus/visorchipset.c | 10 -- 1 file

[PATCH 20/21] staging: unisys: visorbus: merge guestlinuxdebug with vmcallinterface.h

2016-09-01 Thread David Kershner
Merge guestlinuxdebug into vmcallinterface.h since it is dependent on it Signed-off-by: David Kershner Reviewed-by: Tim Sell --- drivers/staging/unisys/visorbus/guestlinuxdebug.h | 180 -- drivers/staging/unisys/visorbus/visorbus_main.c | 1 - drivers/staging/unisys

[PATCH 02/21] staging: unisys: visorbus_main.c remove unused pound defines

2016-09-01 Thread David Kershner
From: Erik Arfvidson This removes two unused pound defines in the visorbus_main.c file. Signed-off-by: Erik Arfvidson Signed-off-by: David Kershner --- drivers/staging/unisys/visorbus/visorbus_main.c | 3 --- 1 file changed, 3 deletions(-) diff --git a/drivers/staging/unisys/visorbus

[PATCH 16/21] staging: unisys: visorbus: Merge iovmcall_gnuc into vmcallinterface

2016-09-01 Thread David Kershner
iovmcall_gnuc was only being referenced by vmcallinterface, so merge them together. Signed-off-by: David Kershner Reviewed-by: Tim Sell --- drivers/staging/unisys/visorbus/iovmcall_gnuc.h | 48 --- drivers/staging/unisys/visorbus/vmcallinterface.h | 35

[PATCH 14/21] staging: unisys: visorbus: Reorder functions to avoid including header

2016-09-01 Thread David Kershner
Visorchannel does not need to include visorbus_private.h; all it was using it for was function prototypes. A simple reorder causes it to no longer need to include it. Signed-off-by: David Kershner Reviewed-by: Tim Sell --- drivers/staging/unisys/visorbus/visorchannel.c | 245

[PATCH v2 05/21] staging: unisys: visorbus: remove unused lists

2016-09-01 Thread David Kershner
From: Jon Frisch This patch removes the following lists that were never used: LIST_HEAD(bus_info_list) LIST_HEAD(dev_info_list) LIST_HEAD(putfile_request_list) Signed-off-by: Jon Frisch Signed-off-by: David Kershner Reported-by: Greg Kroah-Hartman --- drivers/staging/unisys/visorbus

[PATCH v2 02/21] staging: unisys: visorbus_main.c remove unused pound defines

2016-09-01 Thread David Kershner
From: Erik Arfvidson This removes two unused pound defines in the visorbus_main.c file. Signed-off-by: Erik Arfvidson Signed-off-by: David Kershner Reported-by: Greg Kroah-Hartman --- drivers/staging/unisys/visorbus/visorbus_main.c | 3 --- 1 file changed, 3 deletions(-) diff --git a

[PATCH v2 06/21] staging: unisys: visorbus: remove putfile_buffer_entry

2016-09-01 Thread David Kershner
From: Jon Frisch This patch removes the unused struct putfile_buffer_entry. Signed-off-by: Jon Frisch Signed-off-by: David Kershner Reported-by: Greg Kroah-Hartman --- drivers/staging/unisys/visorbus/visorchipset.c | 9 - 1 file changed, 9 deletions(-) diff --git a/drivers/staging

[PATCH v2 00/21] Clean up header files and remove unused structures

2016-09-01 Thread David Kershner
: 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

[PATCH v2 18/21] staging: unisys: visorbus: Move non global guestlinuxdebug to visorbus

2016-09-01 Thread David Kershner
Guestlinuxdebug.h is only used by visorbus, move the include file into its directory instead of the global one. Signed-off-by: David Kershner Reviewed-by: Tim Sell Reported-by: Greg Kroah-Hartman --- drivers/staging/unisys/{include => visorbus}/guestlinuxdebug.h | 0 1 file changed

[PATCH v2 15/21] staging: unisys: visorbus: merge vbusdeviceinfo.h into vbuschannel

2016-09-01 Thread David Kershner
vbusdeviceinfo.h was only used by vbuschannel.h so merge them together. Signed-off-by: David Kershner Reviewed-by: Tim Sell Reported-by: Greg Kroah-Hartman --- drivers/staging/unisys/visorbus/vbuschannel.h | 212 ++- drivers/staging/unisys/visorbus/vbusdeviceinfo.h

[PATCH v2 14/21] staging: unisys: visorbus: Reorder functions to avoid including header

2016-09-01 Thread David Kershner
Visorchannel does not need to include visorbus_private.h; all it was using it for was function prototypes. A simple reorder causes it to no longer need to include it. Signed-off-by: David Kershner Reviewed-by: Tim Sell Reported-by: Greg Kroah-Hartman --- drivers/staging/unisys/visorbus

[PATCH v2 07/21] staging: unisys: Move vbushelper.h contents to visorbus_private.h

2016-09-01 Thread David Kershner
From: Bryan Thompson The contents of vbushelper.h are now only used by visorbus, so it no longer needs to be a general include file and it can be incorporated in the visorbus private header. Signed-off-by: Bryan Thompson Signed-off-by: David Kershner Reviewed-by: Tim Sell Reported-by: Greg

[PATCH v2 11/21] staging: unisys: visorinput: Remove ultrainputreport.h include

2016-09-01 Thread David Kershner
From: Bryan Thompson Stop ultrainputreport.h from including itself. Signed-off-by: Bryan Thompson Signed-off-by: David Kershner Reviewed-by: Tim Sell Reported-by: Greg Kroah-Hartman --- drivers/staging/unisys/visorinput/ultrainputreport.h | 2 -- 1 file changed, 2 deletions(-) diff --git

[PATCH v2 08/21] staging: unisys: visorbus: Convert visorchipset.h refs

2016-09-01 Thread David Kershner
From: David Binder visorbus_private.h was previously named visorchipset.h. This patch removes references to the old filename, and updates them with the new filename. Signed-off-by: David Binder Signed-off-by: David Kershner Reviewed-by: Tim Sell Reported-by: Greg Kroah-Hartman --- drivers

[PATCH v2 20/21] staging: unisys: visorbus: merge guestlinuxdebug with vmcallinterface.h

2016-09-01 Thread David Kershner
Merge guestlinuxdebug into vmcallinterface.h since it is dependent on it Signed-off-by: David Kershner Reviewed-by: Tim Sell Reported-by: Greg Kroah-Hartman --- drivers/staging/unisys/visorbus/guestlinuxdebug.h | 180 -- drivers/staging/unisys/visorbus/visorbus_main.c

[PATCH v2 10/21] staging: unisys: visorinput: Update visorinput.c includes

2016-09-01 Thread David Kershner
From: Bryan Thompson Remove unnecessary channel.h include from visorinput.c. Signed-off-by: Bryan Thompson Signed-off-by: David Kershner Reviewed-by: Tim Sell Reported-by: Greg Kroah-Hartman --- drivers/staging/unisys/visorinput/visorinput.c | 1 - 1 file changed, 1 deletion(-) diff --git

[PATCH v2 04/21] staging: unisys: visorbus: remove g_devicechangestate_packet

2016-09-01 Thread David Kershner
From: Jon Frisch This patch removes the unused struct controlvm_message_packet g_devicechangestate_packet. The struct is set but never called. Signed-off-by: Jon Frisch Signed-off-by: David Kershner Reported-by: Greg Kroah-Hartman --- drivers/staging/unisys/visorbus/visorchipset.c | 2 -- 1

[PATCH v2 12/21] staging: unisys: merge diagchannel.h to visorbus.h

2016-09-01 Thread David Kershner
From: Erik Arfvidson It is pointless to have a dedicated include for another include. So I merged them together. Signed-off-by: Erik Arfvidson Signed-off-by: David Kershner Reviewed-by: Tim Sell Reported-by: Greg Kroah-Hartman --- drivers/staging/unisys/include/diagchannel.h | 38

[PATCH v2 09/21] staging: unisys: visorbus: Merge channel_guid.h with channel.h

2016-09-01 Thread David Kershner
From: David Binder Merges the contents of channel_guid.h with channel.h, as the former was not a proper header file. Therefore, the channel_guid.h is no longer needed. Signed-off-by: David Binder Signed-off-by: David Kershner Reviewed-by: Tim Sell Reported-by: Greg Kroah-Hartman

[PATCH v2 03/21] staging: unisys: visornic_main.c remove unused pound defines

2016-09-01 Thread David Kershner
From: Erik Arfvidson This removes two unused pound defines in the visornic_main.c file. Signed-off-by: Erik Arfvidson Signed-off-by: David Kershner Reported-by: Greg Kroah-Hartman --- drivers/staging/unisys/visornic/visornic_main.c | 2 -- 1 file changed, 2 deletions(-) diff --git a

[PATCH v2 17/21] staging: unisys: visorbus: remove include for vbuschannel.h

2016-09-01 Thread David Kershner
visorbus_main.c does not need to include vbuschannel.h. Signed-off-by: David Kershner Reviewed-by: Tim Sell Reported-by: Greg Kroah-Hartman --- drivers/staging/unisys/visorbus/visorbus_main.c | 1 - 1 file changed, 1 deletion(-) diff --git a/drivers/staging/unisys/visorbus/visorbus_main.c b

[PATCH v2 16/21] staging: unisys: visorbus: Merge iovmcall_gnuc into vmcallinterface

2016-09-01 Thread David Kershner
iovmcall_gnuc was only being referenced by vmcallinterface, so merge them together. Signed-off-by: David Kershner Reviewed-by: Tim Sell Reported-by: Greg Kroah-Hartman --- drivers/staging/unisys/visorbus/iovmcall_gnuc.h | 48 --- drivers/staging/unisys/visorbus

[PATCH v2 21/21] staging: unisys: visorbus: cleanup include listings

2016-09-01 Thread David Kershner
Cleaned up include section of files so that they only include the files needed by them. If an include file includes the file already don't repeat it. Signed-off-by: David Kershner Reviewed-by: Tim Sell Reported-by: Greg Kroah-Hartman --- drivers/staging/unisys/visorbus/visorbus_main.

[PATCH v2 13/21] staging: unisys: visorbus: Merge controlvm completion status to controlvmchannel

2016-09-01 Thread David Kershner
The completion status are valid only for the controlvm channel so they should be moved into its header file. Signed-off-by: David Kershner Reviewed-by: Tim Sell Reported-by: Greg Kroah-Hartman --- drivers/staging/unisys/visorbus/controlvmchannel.h | 76 .../unisys/visorbus

[PATCH v2 19/21] staging: unisys: remove check for GNUC

2016-09-01 Thread David Kershner
The check for GNUC is redundant and is not needed for vmcallinterface.h. Signed-off-by: David Kershner Reviewed-by: Tim Sell Reported-by: Greg Kroah-Hartman --- drivers/staging/unisys/visorbus/vmcallinterface.h | 2 -- 1 file changed, 2 deletions(-) diff --git a/drivers/staging/unisys

[PATCH v2 01/21] staging: unisys: visorchipset.c remove unused pound defines

2016-09-01 Thread David Kershner
From: Erik Arfvidson This removes three unused pound defines in the visorchipset.c file. Signed-off-by: Erik Arfvidson Signed-off-by: David Kershner Reported-by: Greg Kroah-Hartman --- drivers/staging/unisys/visorbus/visorchipset.c | 3 --- 1 file changed, 3 deletions(-) diff --git a

[PATCH v3 00/21] Clean up header files and remove unused structures

2016-09-02 Thread David Kershner
. 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

[PATCH v3 03/21] staging: unisys: visornic_main.c remove unused pound defines

2016-09-02 Thread David Kershner
From: Erik Arfvidson This removes two unused pound defines in the visornic_main.c file. Signed-off-by: Erik Arfvidson Signed-off-by: David Kershner --- drivers/staging/unisys/visornic/visornic_main.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/drivers/staging/unisys/visornic

[PATCH v3 01/21] staging: unisys: visorchipset.c remove unused pound defines

2016-09-02 Thread David Kershner
From: Erik Arfvidson This removes three unused pound defines in the visorchipset.c file. Signed-off-by: Erik Arfvidson Signed-off-by: David Kershner Reported-by: Greg Kroah-Hartman --- drivers/staging/unisys/visorbus/visorchipset.c | 3 --- 1 file changed, 3 deletions(-) diff --git a

[PATCH v3 02/21] staging: unisys: visorbus_main.c remove unused pound defines

2016-09-02 Thread David Kershner
From: Erik Arfvidson This removes two unused pound defines in the visorbus_main.c file. Signed-off-by: Erik Arfvidson Signed-off-by: David Kershner --- drivers/staging/unisys/visorbus/visorbus_main.c | 3 --- 1 file changed, 3 deletions(-) diff --git a/drivers/staging/unisys/visorbus

[PATCH v3 05/21] staging: unisys: visorbus: remove unused lists

2016-09-02 Thread David Kershner
From: Jon Frisch This patch removes the following lists that were never used: LIST_HEAD(bus_info_list) LIST_HEAD(dev_info_list) LIST_HEAD(putfile_request_list) Signed-off-by: Jon Frisch Signed-off-by: David Kershner Reported-by: Greg Kroah-Hartman --- drivers/staging/unisys/visorbus

[PATCH v3 04/21] staging: unisys: visorbus: remove g_devicechangestate_packet

2016-09-02 Thread David Kershner
From: Jon Frisch This patch removes the unused struct controlvm_message_packet g_devicechangestate_packet. The struct is set but never called. Signed-off-by: Jon Frisch Signed-off-by: David Kershner Reported-by: Greg Kroah-Hartman --- drivers/staging/unisys/visorbus/visorchipset.c | 2 -- 1

[PATCH v3 12/21] staging: unisys: merge diagchannel.h to visorbus.h

2016-09-02 Thread David Kershner
From: Erik Arfvidson It is pointless to have a dedicated include for another include. So I merged them together. Signed-off-by: Erik Arfvidson Signed-off-by: David Kershner Reviewed-by: Tim Sell Reported-by: Greg Kroah-Hartman --- drivers/staging/unisys/include/diagchannel.h | 38

[PATCH v3 15/21] staging: unisys: visorbus: merge vbusdeviceinfo.h into vbuschannel

2016-09-02 Thread David Kershner
vbusdeviceinfo.h was only used by vbuschannel.h so merge them together. Signed-off-by: David Kershner Reviewed-by: Tim Sell Reported-by: Greg Kroah-Hartman --- drivers/staging/unisys/visorbus/vbuschannel.h | 212 ++- drivers/staging/unisys/visorbus/vbusdeviceinfo.h

[PATCH v3 13/21] staging: unisys: visorbus: Merge controlvm completion status to controlvmchannel

2016-09-02 Thread David Kershner
The completion status are valid only for the controlvm channel so they should be moved into its header file. Signed-off-by: David Kershner Reviewed-by: Tim Sell Reported-by: Greg Kroah-Hartman --- drivers/staging/unisys/visorbus/controlvmchannel.h | 76 .../unisys/visorbus

[PATCH v3 11/21] staging: unisys: visorinput: Remove ultrainputreport.h include

2016-09-02 Thread David Kershner
From: Bryan Thompson Stop ultrainputreport.h from including itself. Signed-off-by: Bryan Thompson Signed-off-by: David Kershner Reviewed-by: Tim Sell --- drivers/staging/unisys/visorinput/ultrainputreport.h | 2 -- 1 file changed, 2 deletions(-) diff --git a/drivers/staging/unisys

[PATCH v3 08/21] staging: unisys: visorbus: Convert visorchipset.h refs

2016-09-02 Thread David Kershner
From: David Binder visorbus_private.h was previously named visorchipset.h. This patch removes references to the old filename, and updates them with the new filename. Signed-off-by: David Binder Signed-off-by: David Kershner Reviewed-by: Tim Sell --- drivers/staging/unisys/visorbus

[PATCH v3 10/21] staging: unisys: visorinput: Update visorinput.c includes

2016-09-02 Thread David Kershner
From: Bryan Thompson Remove unnecessary channel.h include from visorinput.c. Signed-off-by: Bryan Thompson Signed-off-by: David Kershner Reviewed-by: Tim Sell --- drivers/staging/unisys/visorinput/visorinput.c | 1 - 1 file changed, 1 deletion(-) diff --git a/drivers/staging/unisys

[PATCH v3 06/21] staging: unisys: visorbus: remove putfile_buffer_entry

2016-09-02 Thread David Kershner
From: Jon Frisch This patch removes the unused struct putfile_buffer_entry. Signed-off-by: Jon Frisch Signed-off-by: David Kershner Reported-by: Greg Kroah-Hartman --- drivers/staging/unisys/visorbus/visorchipset.c | 9 - 1 file changed, 9 deletions(-) diff --git a/drivers/staging

[PATCH v3 14/21] staging: unisys: visorbus: Reorder functions to avoid including header

2016-09-02 Thread David Kershner
Visorchannel does not need to include visorbus_private.h; all it was using it for was function prototypes. A simple reorder causes it to no longer need to include it. Signed-off-by: David Kershner Reviewed-by: Tim Sell --- drivers/staging/unisys/visorbus/visorchannel.c | 245

[PATCH v3 16/21] staging: unisys: visorbus: Merge iovmcall_gnuc into vmcallinterface

2016-09-02 Thread David Kershner
iovmcall_gnuc was only being referenced by vmcallinterface, so merge them together. Signed-off-by: David Kershner Reviewed-by: Tim Sell Reported-by: Greg Kroah-Hartman --- drivers/staging/unisys/visorbus/iovmcall_gnuc.h | 48 --- drivers/staging/unisys/visorbus

[PATCH v3 09/21] staging: unisys: visorbus: Merge channel_guid.h with channel.h

2016-09-02 Thread David Kershner
From: David Binder Merges the contents of channel_guid.h with channel.h, as the former was not a proper header file. Therefore, the channel_guid.h is no longer needed. Signed-off-by: David Binder Signed-off-by: David Kershner Reviewed-by: Tim Sell Reported-by: Greg Kroah-Hartman

[PATCH v3 07/21] staging: unisys: Move vbushelper.h contents to visorbus_private.h

2016-09-02 Thread David Kershner
From: Bryan Thompson The contents of vbushelper.h are now only used by visorbus, so it no longer needs to be a general include file and it can be incorporated in the visorbus private header. Signed-off-by: Bryan Thompson Signed-off-by: David Kershner Reviewed-by: Tim Sell Reported-by: Greg

[PATCH v3 18/21] staging: unisys: visorbus: Move non global guestlinuxdebug to visorbus

2016-09-02 Thread David Kershner
Guestlinuxdebug.h is only used by visorbus, move the include file into its directory instead of the global one. Signed-off-by: David Kershner Reviewed-by: Tim Sell Reported-by: Greg Kroah-Hartman --- drivers/staging/unisys/{include => visorbus}/guestlinuxdebug.h | 0 1 file changed

[PATCH v3 17/21] staging: unisys: visorbus: remove include for vbuschannel.h

2016-09-02 Thread David Kershner
visorbus_main.c does not need to include vbuschannel.h. Signed-off-by: David Kershner Reviewed-by: Tim Sell --- drivers/staging/unisys/visorbus/visorbus_main.c | 1 - 1 file changed, 1 deletion(-) diff --git a/drivers/staging/unisys/visorbus/visorbus_main.c b/drivers/staging/unisys/visorbus

[PATCH v3 21/21] staging: unisys: visorbus: cleanup include listings

2016-09-02 Thread David Kershner
Cleaned up include section of files so that they only include the files needed by them. If an include file includes the file already don't repeat it. Signed-off-by: David Kershner Reviewed-by: Tim Sell Reported-by: Greg Kroah-Hartman --- drivers/staging/unisys/visorbus/visorchipset.

[PATCH v3 19/21] staging: unisys: remove check for GNUC

2016-09-02 Thread David Kershner
The check for GNUC is redundant and is not needed for vmcallinterface.h. Signed-off-by: David Kershner Reviewed-by: Tim Sell --- drivers/staging/unisys/visorbus/vmcallinterface.h | 2 -- 1 file changed, 2 deletions(-) diff --git a/drivers/staging/unisys/visorbus/vmcallinterface.h b/drivers

[PATCH v3 20/21] staging: unisys: visorbus: merge guestlinuxdebug with vmcallinterface.h

2016-09-02 Thread David Kershner
Merge guestlinuxdebug into vmcallinterface.h since it is dependent on it Signed-off-by: David Kershner Reviewed-by: Tim Sell Reported-by: Greg Kroah-Hartman --- drivers/staging/unisys/visorbus/guestlinuxdebug.h | 180 -- drivers/staging/unisys/visorbus/visorbus_main.c

[PATCH 00/22] staging: unisys: visorbus: Remove prototypes and other cleanups

2016-09-19 Thread David Kershner
This patchset removes unused crud from the visorbus driver, which includes shuffling a lot of code around so function prototypes could be deleted. David Kershner (18): staging: unisys: visorbus: reorder controlvm_periodic_work staging: unisys: visorbus: move handle_command staging: unisys

[PATCH 02/22] staging: unisys: visorbus: remove unused long long bus_count

2016-09-19 Thread David Kershner
From: Jon Frisch This patch removes the unused long long bus_count. Signed-off-by: Jon Frisch Signed-off-by: David Kershner --- drivers/staging/unisys/visorbus/visorbus_main.c | 5 - 1 file changed, 5 deletions(-) diff --git a/drivers/staging/unisys/visorbus/visorbus_main.c b/drivers

[PATCH 03/22] staging: unisys: visorbus: remove unused dump_vhba_bus

2016-09-19 Thread David Kershner
From: Jon Frisch This patch removes the unused u32 dump_vhba_bus. Signed-off-by: Jon Frisch Signed-off-by: David Kershner Reported-by: Greg Kroah-Hartman --- drivers/staging/unisys/visorbus/visorchipset.c | 5 + 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/drivers

[PATCH 08/22] staging: unisys: visorbus: move read_controlvm_event

2016-09-19 Thread David Kershner
The function read_controlvm_event needs to be moved lower in the file to avoid extraneous function prototypes. Reported-by: Greg Kroah-Hartman Signed-off-by: David Kershner Reviewed-by: Tim Sell --- drivers/staging/unisys/visorbus/visorchipset.c | 42 +- 1 file changed

[PATCH 06/22] staging: unisys: visorbus: move handle_command

2016-09-19 Thread David Kershner
Handle_command gets moved lower in the file to avoid the need for extraneous function prototypes. Reported-by: Greg Kroah-Hartman Signed-off-by: David Kershner Reviewed-by: Tim Sell --- drivers/staging/unisys/visorbus/visorchipset.c | 230 - 1 file changed, 115

[PATCH 04/22] staging: unisys: visorbus: move controlvm_payload_bytes_buffered

2016-09-19 Thread David Kershner
From: Jon Frisch This patch moves the unsigned long controlvm_payload_bytes_buffered from the module parameters location to a more appropriate location below the controlvm_payload_info. Signed-off-by: Jon Frisch Signed-off-by: David Kershner Reported-by: Greg Kroah-Hartman --- drivers

[PATCH 01/22] staging: unisys: visorbus remove unused module parameter

2016-09-19 Thread David Kershner
From: Jon Frisch This patch removes the unused module parameter visorchipset_visorbusregwait Signed-off-by: Jon Frisch Signed-off-by: David Kershner Reported-by: Greg Kroah-Hartman --- drivers/staging/unisys/visorbus/visorchipset.c | 4 1 file changed, 4 deletions(-) diff --git a

[PATCH 05/22] staging: unisys: visorbus: reorder controlvm_periodic_work

2016-09-19 Thread David Kershner
Move controlvm_periodic_work lower in the file to avoid having to create function prototypes. Reported-by: Greg Kroah-Hartman Signed-off-by: David Kershner Reviewed-by: Tim Sell --- drivers/staging/unisys/visorbus/visorchipset.c | 134 - 1 file changed, 67 insertions

[PATCH 20/22] staging: unisys: visorbus move visorbus_type to remove prototypes

2016-09-19 Thread David Kershner
Move the struct visorbus_type down in the file to get rid of the function prototypes visorbus_uevent and visorbus_match. Reported-by: Greg Kroah-Hartman Signed-off-by: David Kershner Reviewed-by: Tim Sell --- drivers/staging/unisys/visorbus/visorbus_main.c | 26 - 1

[PATCH 11/22] staging: unisys: visorbus: remove controlvm_respond_chipset_init prototype

2016-09-19 Thread David Kershner
Remove the unneeded controlvm_respond_chipset_init prototype by moving the functions controlvm_init_response and controlvm_respond_chipset_init up in the file. Reported-by: Greg Kroah-Hartman Signed-off-by: David Kershner Reviewed-by: Tim Sell --- drivers/staging/unisys/visorbus

[PATCH 14/22] staging: unisys: visorbus: move toolaction functions to remove prototypes

2016-09-19 Thread David Kershner
The toolchain functions show and store needed to be moved so the prototypes were no longer needed. Reported-by: Greg Kroah-Hartman Signed-off-by: David Kershner Reviewed-by: Tim Sell --- drivers/staging/unisys/visorbus/visorchipset.c | 64 -- 1 file changed, 29

[PATCH 09/22] staging: unisys: visorbus: move parahotplug_process_list

2016-09-19 Thread David Kershner
The function parahotplug_process_list needs to be moved lower in the file to avoid extraneous function prototypes. Reported-by: Greg Kroah-Hartman Signed-off-by: David Kershner Reviewed-by: Tim Sell --- drivers/staging/unisys/visorbus/visorchipset.c | 63 +- 1 file

[PATCH 15/22] staging: unisys: visorbus: move boottotool

2016-09-19 Thread David Kershner
Move the boottotool show and store functions so the function prototypes can be removed. Reported-by: Greg Kroah-Hartman Signed-off-by: David Kershner Reviewed-by: Tim Sell --- drivers/staging/unisys/visorbus/visorchipset.c | 72 -- 1 file changed, 33 insertions(+), 39

[PATCH 16/22] staging: unisys: visorbus: move error store/show functions

2016-09-19 Thread David Kershner
Move the show and store functions for the error DEV_ATTR_RW so that the function prototypes can be removed. Reported-by: Greg Kroah-Hartman Signed-off-by: David Kershner Reviewed-by: Tim Sell --- drivers/staging/unisys/visorbus/visorchipset.c | 61 -- 1 file changed

[PATCH 10/22] staging: unisys: visorbus: remove prototype controlvm_respond

2016-09-19 Thread David Kershner
Remove the unneeded prototype for controlvm_respond. Reported-by: Greg Kroah-Hartman Signed-off-by: David Kershner Reviewed-by: Tim Sell --- drivers/staging/unisys/visorbus/visorchipset.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/drivers/staging/unisys/visorbus/visorchipset.c b

[PATCH 17/22] staging: unisys: visorbus: move textid store and show functions

2016-09-19 Thread David Kershner
The textid store and show functions were moved to allow us to remove the function prototypes. Reported-by: Greg Kroah-Hartman Signed-off-by: David Kershner Reviewed-by: Tim Sell --- drivers/staging/unisys/visorbus/visorchipset.c | 63 -- 1 file changed, 29 insertions

[PATCH 19/22] staging: unisys: visorbus: move deviceenabled/disabled store functions

2016-09-19 Thread David Kershner
Move the deviceenabled/devicedisabled store functions so that function prototypes can be removed. This caused us to move several of the structures farther down in the file as well. Reported-by: Greg Kroah-Hartman Signed-off-by: David Kershner Reviewed-by: Tim Sell --- drivers/staging/unisys

[PATCH 18/22] staging: unisys: visorbus: move the remaining_steps_show/store functions

2016-09-19 Thread David Kershner
Moving the remaining_steps functions allows us to get rid of an unneeded prototype. Reported-by: Greg Kroah-Hartman Signed-off-by: David Kershner Reviewed-by: Tim Sell --- drivers/staging/unisys/visorbus/visorchipset.c | 62 -- 1 file changed, 28 insertions(+), 34

[PATCH 12/22] staging: unisys: visorbus: remove controlvm_respond_physdev_changestate

2016-09-19 Thread David Kershner
Remove the unneeded prototype declaration for function controlvm_respond_physdev_changestate. Reported-by: Greg Kroah-Hartman Signed-off-by: David Kershner Reviewed-by: Tim Sell --- drivers/staging/unisys/visorbus/visorchipset.c | 4 1 file changed, 4 deletions(-) diff --git a/drivers

[PATCH 07/22] staging: unisys: visorbus: move parser_init_byte_stream

2016-09-19 Thread David Kershner
The function parser_init_byte_stream needs to be moved lower in the file to avoid extraneous function prototypes. Reported-by: Greg Kroah-Hartman Signed-off-by: David Kershner Reviewed-by: Tim Sell --- drivers/staging/unisys/visorbus/visorchipset.c | 116 - 1 file

[PATCH 22/22] staging: unisys: visorbus: move parahotplug_request_list and related lock

2016-09-19 Thread David Kershner
parahotplug_request_list and parahotplug_request_list_lock should be defined closer to where we are actually using them. Reported-by: Greg Kroah-Hartman Signed-off-by: David Kershner Reviewed-by: Tim Sell --- drivers/staging/unisys/visorbus/visorchipset.c | 6 +++--- 1 file changed, 3

[PATCH 21/22] staging: unisys: visorbus: remove fix_vbus_dev_info prototype

2016-09-19 Thread David Kershner
Move the visordriver_probe_device and visorbus_register_visor_driver functions lower in the file to get rid of the function prototype fix_vbus_dev_info. Signed-off-by: David Kershner Reviewed-by: Tim Sell --- drivers/staging/unisys/visorbus/visorbus_main.c | 256 1

[PATCH 13/22] staging: unisys: visorbus: remove parser_done prototype

2016-09-19 Thread David Kershner
Remove the unneeded prototype parser_done. Reported-by: Greg Kroah-Hartman Signed-off-by: David Kershner Reviewed-by: Tim Sell --- drivers/staging/unisys/visorbus/visorchipset.c | 3 --- 1 file changed, 3 deletions(-) diff --git a/drivers/staging/unisys/visorbus/visorchipset.c b/drivers

[PATCH 1/4] staging: unisys: visornic: remove prototypes

2016-09-20 Thread David Kershner
Remove unneeded prototypes from visornic_main.c Signed-off-by: David Kershner Reviewed-by: Tim Sell --- drivers/staging/unisys/visornic/visornic_main.c | 41 ++--- 1 file changed, 17 insertions(+), 24 deletions(-) diff --git a/drivers/staging/unisys/visornic

[PATCH 3/4] staging: unisys: visornic: remove visornic_poll prototype

2016-09-20 Thread David Kershner
Remove visornic_poll prototype, because it is not needed. Signed-off-by: David Kershner Reviewed-by: Tim Sell --- drivers/staging/unisys/visornic/visornic_main.c | 1 - 1 file changed, 1 deletion(-) diff --git a/drivers/staging/unisys/visornic/visornic_main.c b/drivers/staging/unisys

[PATCH 4/4] staging: unisys: visornic: remove poll_for_irq prototype

2016-09-20 Thread David Kershner
Remove poll_for_irq prototype not needed. Signed-off-by: David Kershner Reviewed-by: Tim Sell --- drivers/staging/unisys/visornic/visornic_main.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/drivers/staging/unisys/visornic/visornic_main.c b/drivers/staging/unisys/visornic

[PATCH 2/4] staging: unisys: visornic: remove visornic debugfs protoyptes

2016-09-20 Thread David Kershner
Remove visornic debugfs prototypes, they are not needed. Signed-off-by: David Kershner Reviewed-by: Tim Sell --- drivers/staging/unisys/visornic/visornic_main.c | 23 +-- 1 file changed, 9 insertions(+), 14 deletions(-) diff --git a/drivers/staging/unisys/visornic

[PATCH 0/4] staging: unisys: visornic: remove prototypes

2016-09-20 Thread David Kershner
This patchset removes unneeded prototypes from the visornic driver. Some code was shuffled around to avoid needing the prototypes. David Kershner (4): staging: unisys: visornic: remove prototypes staging: unisys: visornic: remove visornic debugfs protoyptes staging: unisys: visornic: remove

[PATCH] staging: unisys: visorhba: remove prototypes for visorhba_main.c

2016-09-20 Thread David Kershner
Remove not needed prototypes in visorhba. Signed-off-by: David Kershner Reviewed-by: Tim Sell --- drivers/staging/unisys/visorhba/visorhba_main.c | 50 +++-- 1 file changed, 21 insertions(+), 29 deletions(-) diff --git a/drivers/staging/unisys/visorhba/visorhba_main.c b

[PATCH 2/4] staging: unisys: include: remove unused spar_channel_client_acquire_os

2016-09-20 Thread David Kershner
The function spar_channel_client_acquire_os is not being used so remove it. Signed-off-by: David Kershner Reviewed-by: Tim Sell --- drivers/staging/unisys/include/channel.h | 104 --- 1 file changed, 104 deletions(-) diff --git a/drivers/staging/unisys/include

[PATCH 1/4] staging: unisys: include: remove unused function pathname_last_n_nodes

2016-09-20 Thread David Kershner
The function pathname_last_n_nodes is not used, get rid of it. Signed-off-by: David Kershner Reviewed-by: Tim Sell --- drivers/staging/unisys/include/channel.h | 32 1 file changed, 32 deletions(-) diff --git a/drivers/staging/unisys/include/channel.h b

[PATCH 3/4] staging: unisys: include: remove unused spar_channel_client_release_os

2016-09-20 Thread David Kershner
The function spar_channel_client_release_os is not being used so remove it. Signed-off-by: David Kershner Reviewed-by: Tim Sell --- drivers/staging/unisys/include/channel.h | 22 -- 1 file changed, 22 deletions(-) diff --git a/drivers/staging/unisys/include/channel.h b

[PATCH 4/4] staging: unisys: include: remove unused ULTRA_CHANNELCLI_STRING

2016-09-20 Thread David Kershner
The inline ULTRA_CHANNELCLI_STRING is not being used so remove it. Signed-off-by: David Kershner Reviewed-by: Tim Sell --- drivers/staging/unisys/include/channel.h | 22 -- 1 file changed, 22 deletions(-) diff --git a/drivers/staging/unisys/include/channel.h b/drivers

[PATCH 0/4] staging: unisys: include: remove unused functions

2016-09-20 Thread David Kershner
This patchset removes unused function from the include directories. David Kershner (4): staging: unisys: include: remove unused function pathname_last_n_nodes staging: unisys: include: remove unused spar_channel_client_acquire_os staging: unisys: include: remove unused

[PATCH 8/9] staging: unisys: visorbus: Convert visorchannel_signalremove() return val

2016-09-26 Thread David Kershner
From: David Binder Per Documentation/CodingStyle, function names that convey an action or an imperative command should return an integer. This commit converts the visorbus API function, visorchannel_signalremove(), to returning integer values. All uses of this function are updated accordingly

[PATCH 0/9] staging: unisys: Remove version information

2016-09-26 Thread David Kershner
addressed in another series that overhauls error handling for the driver. David Binder (3): staging: unisys: visorbus: Change support functions to integer return vals staging: unisys: visorbus: Convert visorchannel_signalremove() return val staging: unisys: visorbus: Convert

[PATCH 7/9] staging: unisys: visorbus: Change support functions to integer return vals

2016-09-26 Thread David Kershner
From: David Binder Per Documentation/CodingStyle, function names that convey an action or an imperative command should return an integer value. This commit changes several functions and a macro, internal to visorchannel.c, to follow this paradigm. These changes will be necessary later on to

[PATCH 9/9] staging: unisys: visorbus: Convert visorchannel_signalinsert() return val

2016-09-26 Thread David Kershner
From: David Binder Per Documentation/CodingStyle, function names that convey an action or an imperative command should return an integer. This commit converts the visorbus API function, visorchannel_signalinsert(), to returning integer values. All uses of this function are updated accordingly

[PATCH 3/9] staging: unisys: visorinput: remove driver version from visorinput.c

2016-09-26 Thread David Kershner
From: Jon Frisch This patch removes the driver version and the version.h include from visorinput.c Signed-off-by: Jon Frisch Reported-by: Greg Kroah-Hartman Signed-off-by: David Kershner --- drivers/staging/unisys/visorinput/visorinput.c | 2 -- 1 file changed, 2 deletions(-) diff --git a

[PATCH 1/9] staging: unisys: remove driver version from struct visor_driver

2016-09-26 Thread David Kershner
attributes which only contained the driver version. The utsname function is used to replace the driver version with the kernel version in bus_device_info_init(). Signed-off-by: Jon Frisch Reported-by: Greg Kroah-Hartman Signed-off-by: David Kershner --- drivers/staging/unisys/include/visorbus.h

[PATCH 5/9] staging: unisys: remove version.h

2016-09-26 Thread David Kershner
From: Jon Frisch This patch removes version.h and the last version.h include in visorchannel.c. Signed-off-by: Jon Frisch Reported-by: Greg Kroah-Hartman Signed-off-by: David Kershner --- drivers/staging/unisys/include/version.h | 45 -- drivers/staging/unisys

[PATCH 4/9] staging: unisys: visornic: remove driver version from visornic_main.c

2016-09-26 Thread David Kershner
From: Jon Frisch This patch removes the driver version from visornic_main.c Signed-off-by: Jon Frisch Reported-by: Greg Kroah-Hartman Signed-off-by: David Kershner --- drivers/staging/unisys/visornic/visornic_main.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a

[PATCH 6/9] staging: unisys: make MODULE_DESCRIPTIONs consistent

2016-09-26 Thread David Kershner
From: Jon Frisch This patch ensures that consistent verbiage is used in the MODULE_DESCRIPTION text (reported by 'modinfo') for all of the Unisys s-Par drivers. Signed-off-by: Jon Frisch Signed-off-by: David Kershner --- drivers/staging/unisys/visorbus/visorchipset.c | 2 +- drive

[PATCH 2/9] staging: unisys: visorbus: remove driver version from visorchipset.c

2016-09-26 Thread David Kershner
From: Jon Frisch This patch removes the driver version and the version.h include from visorchipset.c Signed-off-by: Jon Frisch Reported-by: Greg Kroah-Hartman Signed-off-by: David Kershner --- drivers/staging/unisys/visorbus/visorchipset.c | 5 + 1 file changed, 1 insertion(+), 4

<    8   9   10   11   12   13   14   15   16   17   >