DriverDev-Devel Archive mirror
 help / color / mirror / Atom feed
* [PATCH 00/42] staging: unisys: More updates to the code
@ 2017-07-17 20:16 David Kershner
  2017-07-17 20:16 ` [PATCH 01/42] staging: unisys: visorbus: visorbus_main.c: use __func__ over hardcoded name David Kershner
                   ` (42 more replies)
  0 siblings, 43 replies; 56+ messages in thread
From: David Kershner @ 2017-07-17 20:16 UTC (permalink / raw)
  To: gregkh, driverdev-devel, sparmaintainer, jes.sorensen

This series fixes some more style issues with the code found
during our internal review.

Alex Curtin (5):
  staging: unisys: visorbus: controlvmchannel.h: removed VISOR_CONTROLVM_CHANNEL_SIGNATURE
  staging: unisys: visorbus: vbuschannel.h: removed VISOR_VBUS_CHANNEL_SIGNATURE
  staging: unisys: include: iochannel.h: removed VISOR_VHBA_CHANNEL_SIGNATURE
  staging: unisys: include: iochannel.h: removed VISOR_VNIC_CHANNEL_SIGNATURE
  staging: unisys: include: iochannel.h: removed VISOR_VSWITCH_CHANNEL_SIGNATURE

Charles Daniels (6):
  staging: unisys: include: Remove COVER macro from channel.h
  staging: unisys: visorbus: fix multi-line function definition
  staging: unisys: visorbus: visorchannel.c: fix multi-line function definition
  staging: unisys: visorhba: fix multi-line function definition
  staging: unisys: visorinput: fix multi-line function definition
  staging: unisys: visornic: fix multi-line function definition

David Binder (6):
  staging: unisys: visorbus: visorchipset.c: Adjust code layout
  staging: unisys: visorbus: visorbus_main.c: Adjust code layout
  staging: unisys: visorhba: visorhba_main.c: Adjust whitespace usage
  staging: unisys: visorinput: visorinput.c: Adjust whitespace usage
  staging: unisys: visornic: visornic_main.c: Adjust whitespace usage
  staging: unisys: visorhba: viosrhba_main.c: Remove unnecessary checks

David Kershner (1):
  staging: unisys: visorbus: Remove unused define for visorchipset.

Erik Arfvidson (5):
  staging: unisys: visorbus: controlvmchannel.h: fix spacing
  staging: unisys: include: channel.h: remove unused pound defines
  staging: unisys: visorbus: rename fix_vbus_dev_info
  staging: unisys: visorbus: remove target_hostname comment
  staging: unisys: visorchipset: remove local_addr in handle_command

Mark Foresta (5):
  staging: unisys: visorbus: Update comment style vbuschannel.h
  staging: unisys: visorbus: fixed comment in visorbus_private.h
  staging: unisys: visorbus: removed blank line in viorbus_main.c
  staging: unisys: visorbus: Removed unused define from visorbus_main.c
  staging: unisys: visorbus: cleaned up include block of visorchipset.c

Sameer Wadgaonkar (9):
  staging: unisys: visorbus: convert VMCALL_CONTROLVM_ADDR enum to #define
  staging: unisys: visorbus: visorbus_main.c: remove extra checks for dev->visorchannel
  staging: unisys: visorbus: visorbus_main.c: put function name and return value on same line.
  staging: unisys: visorbus: visorbus_main.c: remove check from typename_show
  staging: unisys: visorbus: add checks for probe, remove, pause and resume in visorbus_register_visor_driver
  staging: unisys: remove unused define VISOR_VSWITCH_CHANNEL_VERSIONID
  staging: unisys: include: Remove unused CHANNEL_OK defines.
  staging: unisys: moved visor_check_channel from include/channel.h to visorbus/visorbus_main.c
  staging: unisys: visornic: update the struct viosrnic_devdata to have kernel-doc like comments

Zachary Dremann (2):
  staging: unisys: visorbus: visorbus_main.c: use __func__ over hardcoded name
  staging: unisys: visorbus: Fix memory leak

Zohaib (3):
  staging: unisys: visorbus: Beginning of the file /* on its own line
  staging: unisys: include: iochannel.h: Removed unused DEFINE
  staging: unisys: visorbus: Adding a new line between function definition

 drivers/staging/unisys/include/channel.h           |  63 +---
 drivers/staging/unisys/include/iochannel.h         |  21 +-
 drivers/staging/unisys/include/visorbus.h          |   4 +-
 drivers/staging/unisys/visorbus/controlvmchannel.h |  17 +-
 drivers/staging/unisys/visorbus/vbuschannel.h      |   5 +-
 drivers/staging/unisys/visorbus/visorbus_main.c    | 267 +++++++-------
 drivers/staging/unisys/visorbus/visorbus_private.h |   7 +-
 drivers/staging/unisys/visorbus/visorchannel.c     | 101 ++---
 drivers/staging/unisys/visorbus/visorchipset.c     | 243 ++++---------
 drivers/staging/unisys/visorbus/vmcallinterface.h  |   7 +-
 drivers/staging/unisys/visorhba/visorhba_main.c    |  48 +--
 drivers/staging/unisys/visorinput/visorinput.c     |  64 +--
 drivers/staging/unisys/visornic/visornic_main.c    | 201 +++++------
 13 files changed, 437 insertions(+), 611 deletions(-)

base-commit: 874bcba65f9a3a2a304b5f520529c046887c3cdc
-- 
git-series 0.9.1
_______________________________________________
devel mailing list
devel@linuxdriverproject.org
http://driverdev.linuxdriverproject.org/mailman/listinfo/driverdev-devel

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

end of thread, other threads:[~2017-07-18  8:51 UTC | newest]

Thread overview: 56+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-07-17 20:16 [PATCH 00/42] staging: unisys: More updates to the code David Kershner
2017-07-17 20:16 ` [PATCH 01/42] staging: unisys: visorbus: visorbus_main.c: use __func__ over hardcoded name David Kershner
2017-07-17 20:16 ` [PATCH 02/42] staging: unisys: visorbus: visorchipset.c: Adjust code layout David Kershner
2017-07-17 20:16 ` [PATCH 03/42] staging: unisys: visorbus: visorbus_main.c: " David Kershner
2017-07-17 20:16 ` [PATCH 04/42] staging: unisys: visorhba: visorhba_main.c: Adjust whitespace usage David Kershner
2017-07-17 20:16 ` [PATCH 05/42] staging: unisys: visorinput: visorinput.c: " David Kershner
2017-07-18  8:33   ` Dan Carpenter
2017-07-18  8:51     ` Dan Carpenter
2017-07-17 20:16 ` [PATCH 06/42] staging: unisys: visornic: visornic_main.c: " David Kershner
2017-07-17 20:16 ` [PATCH 07/42] staging: unisys: visorbus: controlvmchannel.h: fix spacing David Kershner
2017-07-17 20:16 ` [PATCH 08/42] staging: unisys: visorhba: viosrhba_main.c: Remove unnecessary checks David Kershner
2017-07-18  6:41   ` Greg KH
2017-07-17 20:16 ` [PATCH 09/42] staging: unisys: include: channel.h: remove unused pound defines David Kershner
2017-07-17 20:16 ` [PATCH 10/42] staging: unisys: visorbus: controlvmchannel.h: removed VISOR_CONTROLVM_CHANNEL_SIGNATURE David Kershner
2017-07-17 20:16 ` [PATCH 11/42] staging: unisys: visorbus: vbuschannel.h: removed VISOR_VBUS_CHANNEL_SIGNATURE David Kershner
2017-07-17 20:16 ` [PATCH 12/42] staging: unisys: include: iochannel.h: removed VISOR_VHBA_CHANNEL_SIGNATURE David Kershner
2017-07-17 20:16 ` [PATCH 13/42] staging: unisys: include: iochannel.h: removed VISOR_VNIC_CHANNEL_SIGNATURE David Kershner
2017-07-17 20:16 ` [PATCH 14/42] staging: unisys: include: iochannel.h: removed VISOR_VSWITCH_CHANNEL_SIGNATURE David Kershner
2017-07-17 20:16 ` [PATCH 15/42] staging: unisys: visorbus: convert VMCALL_CONTROLVM_ADDR enum to #define David Kershner
2017-07-17 20:16 ` [PATCH 16/42] staging: unisys: visorbus: visorbus_main.c: remove extra checks for dev->visorchannel David Kershner
2017-07-17 20:16 ` [PATCH 17/42] staging: unisys: visorbus: visorbus_main.c: put function name and return value on same line David Kershner
2017-07-17 20:16 ` [PATCH 18/42] staging: unisys: visorbus: visorbus_main.c: remove check from typename_show David Kershner
2017-07-17 20:16 ` [PATCH 19/42] staging: unisys: visorbus: add checks for probe, remove, pause and resume in visorbus_register_visor_driver David Kershner
2017-07-18  6:44   ` Greg KH
2017-07-17 20:17 ` [PATCH 20/42] staging: unisys: remove unused define VISOR_VSWITCH_CHANNEL_VERSIONID David Kershner
2017-07-17 20:17 ` [PATCH 21/42] staging: unisys: include: Remove unused CHANNEL_OK defines David Kershner
2017-07-17 20:17 ` [PATCH 22/42] staging: unisys: moved visor_check_channel from include/channel.h to visorbus/visorbus_main.c David Kershner
2017-07-17 20:17 ` [PATCH 23/42] staging: unisys: visorbus: Fix memory leak David Kershner
2017-07-17 20:17 ` [PATCH 24/42] staging: unisys: visorbus: Beginning of the file /* on its own line David Kershner
2017-07-18  6:44   ` Greg KH
2017-07-17 20:17 ` [PATCH 25/42] staging: unisys: include: iochannel.h: Removed unused DEFINE David Kershner
2017-07-18  6:45   ` Greg KH
2017-07-17 20:17 ` [PATCH 26/42] staging: unisys: visorbus: Adding a new line between function definition David Kershner
2017-07-18  6:45   ` Greg KH
2017-07-17 20:17 ` [PATCH 27/42] staging: unisys: visorbus: rename fix_vbus_dev_info David Kershner
2017-07-17 20:17 ` [PATCH 28/42] staging: unisys: visorbus: remove target_hostname comment David Kershner
2017-07-17 20:17 ` [PATCH 29/42] staging: unisys: visorchipset: remove local_addr in handle_command David Kershner
2017-07-18  8:45   ` Dan Carpenter
2017-07-17 20:17 ` [PATCH 30/42] staging: unisys: visorbus: Update comment style vbuschannel.h David Kershner
2017-07-18  6:46   ` Greg KH
2017-07-17 20:17 ` [PATCH 31/42] staging: unisys: visorbus: fixed comment in visorbus_private.h David Kershner
2017-07-18  6:46   ` Greg KH
2017-07-17 20:17 ` [PATCH 32/42] staging: unisys: visorbus: removed blank line in viorbus_main.c David Kershner
2017-07-17 20:17 ` [PATCH 33/42] staging: unisys: visorbus: Removed unused define from visorbus_main.c David Kershner
2017-07-17 20:17 ` [PATCH 34/42] staging: unisys: visorbus: cleaned up include block of visorchipset.c David Kershner
2017-07-17 20:17 ` [PATCH 35/42] staging: unisys: visorbus: Remove unused define for visorchipset David Kershner
2017-07-17 20:17 ` [PATCH 36/42] staging: unisys: include: Remove COVER macro from channel.h David Kershner
2017-07-17 20:17 ` [PATCH 37/42] staging: unisys: visorbus: fix multi-line function definition David Kershner
2017-07-18  6:49   ` Greg KH
2017-07-17 20:17 ` [PATCH 38/42] staging: unisys: visorbus: visorchannel.c: " David Kershner
2017-07-17 20:17 ` [PATCH 39/42] staging: unisys: visorhba: " David Kershner
2017-07-17 20:17 ` [PATCH 40/42] staging: unisys: visorinput: " David Kershner
2017-07-17 20:17 ` [PATCH 41/42] staging: unisys: visornic: " David Kershner
2017-07-17 20:17 ` [PATCH 42/42] staging: unisys: visornic: update the struct viosrnic_devdata to have kernel-doc like comments David Kershner
2017-07-18  6:48   ` Greg KH
2017-07-18  6:50 ` [PATCH 00/42] staging: unisys: More updates to the code Greg KH

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).