All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 00/69] checkpatch fix series for Unisys drivers
@ 2014-12-05 22:08 Benjamin Romer
  2014-12-05 22:08 ` [PATCH 01/69] staging: unisys: fix line spacing in visorchipset_umode.h Benjamin Romer
                   ` (68 more replies)
  0 siblings, 69 replies; 83+ messages in thread
From: Benjamin Romer @ 2014-12-05 22:08 UTC (permalink / raw)
  To: gregkh; +Cc: driverdev-devel, sparmaintainer, Benjamin Romer

This patch series contains all of the previously-submitted patches in order and
reviewed individually. The patches contain fixes based on errors, warnings,
and checks generated by checkpatch.pl, removal of log message macros, and fixes
to remove unnecessary goto statements.

Benjamin Romer (51):
  staging: unisys: fix line spacing in visorchipset_umode.h
  staging: unisys: fix line spacing in globals.h
  staging: unisys: remove testing.h
  staging: unisys: get rid of channel stub
  staging: unisys: remove unused types from visorchipset.h
  staging: unisys: add comment to spinlock in struct charqueue
  staging: unisys: clean up typecasts in uislib.c
  staging: unisys: fix alignment in uislib.c
  staging: unisys: refactor create_bus()
  staging: unisys: fix strict checks in create_device()
  staging: unisys: remove extraneous blank lines in uislib.c
  staging: unisys: add missing brackets in info_debugfs_read()
  staging: unisys: add missing brackets in Process_Incoming()
  staging: unisys: remove extra parens from
    uislib_enable_channel_interrupts()
  staging: unisys: get rid of doubled assignment in uislib_mod_init()
  staging: unisys: fix CamelCase global variable names in uislib.c
  staging: unisys: refactor init_vbus_channel()
  staging: unisys: fix CamelCase in create_bus()
  staging: unisys: fix CamelCase in destroy_bus()
  staging: unisys: refactor create_device()
  staging: unisys: refactor pause_device()
  staging: unisys: refactor resume_device()
  staging: unisys: refactor destroy_device()
  staging: unisys: refactor delete_bus_glue()
  staging: unisys: refactor delete_device_glue()
  staging: unisys: refactor info_debugfs_read()
  staging: unisys: refactor find_dev()
  staging: unisys: rename Process_Incoming()
  staging: unisys: rename Initialize_incoming_thread()
  staging: unisys: fix CamelCase Work queue name in uislib.c
  staging: unisys: fix spacing in uisqueue.c
  staging: unisys: fix CamelCase names in do_locked_client_insert()
  staging: unisys: fix line spacing in uisthread.c
  staging: unisys: fix line spacing in uisutils.c
  staging: unisys: fix spacing in uisutils.c
  staging: unisys: fix brackets in uisctrl_register_req_handler_ex()
  staging: unisys: refactor uisctrl_register_req_handler_ex()
  staging: unisys: refactor uisctrl_unregister_req_handler_ex()
  staging: unisys: fix CamelCase globals in uisutils.c
  staging: unisys: refactor req_handler_add()
  staging: unisys: refactor visorchipset_file_init()
  staging: unisys: fix CamelCase global variables in file.c
  staging: unisys: get rid of HAVE_UNLOCKED_IOCTL code
  staging: unisys: get rid of goto in visorchipset_open()
  staging: unisys: fix CamelCase in visorchipset_mmap()
  staging: unisys: get rid of goto in visorchipset_ioctl()
  staging: unisys: remove ERRDRV and related macros
  staging: unisys: remove DBGINF() macros
  staging: unisys: get rid of LOGINFO() macros
  staging: unisys: remove LOGVER() macros
  staging: unisys: get rid of LOGWRN() macro and uisklog.h

Bryan Thompson (4):
  staging: unisys: visorchannel: Rename CamelCase variable channelBytes
  staging: unisys: visorchannel: Rename CamelCase variable nQueues
  staging: unisys: visorchannel: Describe spinlocks in VISORCHANNEL_Tag
    struct
  staging: unisys: Remove VISORCHANNEL typedef

Ken Depro (14):
  staging: unisys: virthba: Remove unneeded spaces after casts
  staging: unisys: virthba: Fix open parenthesis alignment checks
  staging: unisys: virthba: Fix logical continuation checks
  staging: unisys: virthba: Remove blank lines before/after braces
  staging: unisys: virthba: Fix missing braces at end of if-else
    statements
  staging: unisys: virthba: Change alloc calls to use var name instead
    of type
  staging: unisys: virthba: Fix a couple checkpatch problems
  staging: unisys: virthba: Fix "else not useful after return" warning
  staging: unisys: virthba: Fix warnings regarding lines over 80
    characters
  staging: unisys: virthba: Fix a couple open parenthesis alignment
    issues
  staging: unisys: virthba: Fix CamelCase for Disk Add/Remove global
    variables
  staging: unisys: virthba: Fix remaining CamelCase global variables
  staging: unisys: virthba: Fix CamelCase for a couple function names
  staging: unisys: virthba: Fix CamelCase for local variables

 drivers/staging/unisys/Kconfig                     |   1 -
 drivers/staging/unisys/Makefile                    |   1 -
 drivers/staging/unisys/channels/Kconfig            |  10 -
 drivers/staging/unisys/channels/Makefile           |  11 -
 drivers/staging/unisys/channels/channel.c          | 219 -----
 drivers/staging/unisys/channels/chanstub.c         |  75 --
 drivers/staging/unisys/channels/chanstub.h         |  23 -
 drivers/staging/unisys/include/procobjecttree.h    |   1 -
 drivers/staging/unisys/include/timskmod.h          |  22 +-
 drivers/staging/unisys/include/uisqueue.h          |   1 -
 drivers/staging/unisys/include/uisutils.h          |   4 +-
 drivers/staging/unisys/include/uniklog.h           | 191 -----
 drivers/staging/unisys/uislib/Kconfig              |   2 +-
 drivers/staging/unisys/uislib/uislib.c             | 888 ++++++++++-----------
 drivers/staging/unisys/uislib/uisqueue.c           | 219 ++++-
 drivers/staging/unisys/uislib/uisthread.c          |  12 +-
 drivers/staging/unisys/uislib/uisutils.c           | 129 ++-
 drivers/staging/unisys/virthba/Kconfig             |   2 +-
 drivers/staging/unisys/virthba/virthba.c           | 620 +++++++-------
 drivers/staging/unisys/virtpci/virtpci.c           | 185 +++--
 drivers/staging/unisys/visorchannel/globals.h      |   1 -
 drivers/staging/unisys/visorchannel/visorchannel.h |  69 +-
 .../unisys/visorchannel/visorchannel_funcs.c       | 148 ++--
 .../unisys/visorchannel/visorchannel_main.c        |   4 +-
 drivers/staging/unisys/visorchipset/file.c         | 156 ++--
 drivers/staging/unisys/visorchipset/file.h         |   3 +-
 drivers/staging/unisys/visorchipset/globals.h      |   3 -
 drivers/staging/unisys/visorchipset/parser.c       |  39 +-
 drivers/staging/unisys/visorchipset/parser.h       |   1 -
 drivers/staging/unisys/visorchipset/testing.h      |  43 -
 drivers/staging/unisys/visorchipset/visorchipset.h |  55 --
 .../unisys/visorchipset/visorchipset_main.c        | 244 +++---
 .../unisys/visorchipset/visorchipset_umode.h       |   2 -
 drivers/staging/unisys/visorutil/charqueue.c       |   4 +-
 drivers/staging/unisys/visorutil/charqueue.h       |   1 -
 drivers/staging/unisys/visorutil/easyproc.c        |  26 +-
 .../staging/unisys/visorutil/memregion_direct.c    |  19 +-
 drivers/staging/unisys/visorutil/periodic_work.c   |  12 +-
 drivers/staging/unisys/visorutil/procobjecttree.c  |  30 +-
 drivers/staging/unisys/visorutil/visorkmodutils.c  |   1 -
 40 files changed, 1457 insertions(+), 2020 deletions(-)
 delete mode 100644 drivers/staging/unisys/channels/Kconfig
 delete mode 100644 drivers/staging/unisys/channels/Makefile
 delete mode 100644 drivers/staging/unisys/channels/channel.c
 delete mode 100644 drivers/staging/unisys/channels/chanstub.c
 delete mode 100644 drivers/staging/unisys/channels/chanstub.h
 delete mode 100644 drivers/staging/unisys/include/uniklog.h
 delete mode 100644 drivers/staging/unisys/visorchipset/testing.h

-- 
2.1.0

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

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

end of thread, other threads:[~2015-01-22 14:24 UTC | newest]

Thread overview: 83+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-12-05 22:08 [PATCH 00/69] checkpatch fix series for Unisys drivers Benjamin Romer
2014-12-05 22:08 ` [PATCH 01/69] staging: unisys: fix line spacing in visorchipset_umode.h Benjamin Romer
2014-12-05 22:08 ` [PATCH 02/69] staging: unisys: fix line spacing in globals.h Benjamin Romer
2014-12-05 22:08 ` [PATCH 03/69] staging: unisys: remove testing.h Benjamin Romer
2014-12-05 22:08 ` [PATCH 04/69] staging: unisys: get rid of channel stub Benjamin Romer
2014-12-05 22:08 ` [PATCH 05/69] staging: unisys: remove unused types from visorchipset.h Benjamin Romer
2014-12-05 22:08 ` [PATCH 06/69] staging: unisys: add comment to spinlock in struct charqueue Benjamin Romer
2014-12-05 22:08 ` [PATCH 07/69] staging: unisys: clean up typecasts in uislib.c Benjamin Romer
2014-12-05 22:08 ` [PATCH 08/69] staging: unisys: fix alignment " Benjamin Romer
2014-12-05 22:08 ` [PATCH 09/69] staging: unisys: refactor create_bus() Benjamin Romer
2014-12-05 23:14   ` devendra.aaru
2014-12-06 14:18     ` Ben Romer
2014-12-06 19:28       ` devendra.aaru
2014-12-05 22:08 ` [PATCH 10/69] staging: unisys: fix strict checks in create_device() Benjamin Romer
2014-12-05 22:08 ` [PATCH 11/69] staging: unisys: remove extraneous blank lines in uislib.c Benjamin Romer
2014-12-05 22:08 ` [PATCH 12/69] staging: unisys: add missing brackets in info_debugfs_read() Benjamin Romer
2014-12-05 22:08 ` [PATCH 13/69] staging: unisys: add missing brackets in Process_Incoming() Benjamin Romer
2014-12-05 22:08 ` [PATCH 14/69] staging: unisys: remove extra parens from uislib_enable_channel_interrupts() Benjamin Romer
2014-12-05 22:08 ` [PATCH 15/69] staging: unisys: get rid of doubled assignment in uislib_mod_init() Benjamin Romer
2014-12-05 22:08 ` [PATCH 16/69] staging: unisys: fix CamelCase global variable names in uislib.c Benjamin Romer
2014-12-05 22:08 ` [PATCH 17/69] staging: unisys: refactor init_vbus_channel() Benjamin Romer
2014-12-05 22:08 ` [PATCH 18/69] staging: unisys: fix CamelCase in create_bus() Benjamin Romer
2014-12-05 22:08 ` [PATCH 19/69] staging: unisys: fix CamelCase in destroy_bus() Benjamin Romer
2014-12-05 22:08 ` [PATCH 20/69] staging: unisys: refactor create_device() Benjamin Romer
2014-12-05 22:08 ` [PATCH 21/69] staging: unisys: refactor pause_device() Benjamin Romer
2014-12-05 22:08 ` [PATCH 22/69] staging: unisys: refactor resume_device() Benjamin Romer
2014-12-05 22:08 ` [PATCH 23/69] staging: unisys: refactor destroy_device() Benjamin Romer
2014-12-05 22:08 ` [PATCH 24/69] staging: unisys: refactor delete_bus_glue() Benjamin Romer
2014-12-05 22:09 ` [PATCH 25/69] staging: unisys: refactor delete_device_glue() Benjamin Romer
2014-12-05 22:09 ` [PATCH 26/69] staging: unisys: refactor info_debugfs_read() Benjamin Romer
2014-12-05 22:09 ` [PATCH 27/69] staging: unisys: refactor find_dev() Benjamin Romer
2014-12-05 22:09 ` [PATCH 28/69] staging: unisys: rename Process_Incoming() Benjamin Romer
2014-12-05 22:09 ` [PATCH 29/69] staging: unisys: rename Initialize_incoming_thread() Benjamin Romer
2014-12-05 23:09   ` devendra.aaru
2014-12-05 22:09 ` [PATCH 30/69] staging: unisys: fix CamelCase Work queue name in uislib.c Benjamin Romer
2014-12-05 22:09 ` [PATCH 31/69] staging: unisys: fix spacing in uisqueue.c Benjamin Romer
2014-12-05 22:09 ` [PATCH 32/69] staging: unisys: fix CamelCase names in do_locked_client_insert() Benjamin Romer
2014-12-05 22:09 ` [PATCH 33/69] staging: unisys: fix line spacing in uisthread.c Benjamin Romer
2014-12-05 22:09 ` [PATCH 34/69] staging: unisys: fix line spacing in uisutils.c Benjamin Romer
2014-12-05 22:09 ` [PATCH 35/69] staging: unisys: fix " Benjamin Romer
2014-12-05 22:09 ` [PATCH 36/69] staging: unisys: fix brackets in uisctrl_register_req_handler_ex() Benjamin Romer
2014-12-05 22:09 ` [PATCH 37/69] staging: unisys: refactor uisctrl_register_req_handler_ex() Benjamin Romer
2014-12-05 22:09 ` [PATCH 38/69] staging: unisys: refactor uisctrl_unregister_req_handler_ex() Benjamin Romer
2014-12-05 22:09 ` [PATCH 39/69] staging: unisys: fix CamelCase globals in uisutils.c Benjamin Romer
2014-12-05 22:09 ` [PATCH 40/69] staging: unisys: refactor req_handler_add() Benjamin Romer
2014-12-05 22:09 ` [PATCH 41/69] staging: unisys: refactor visorchipset_file_init() Benjamin Romer
2014-12-06 15:14   ` Dan Carpenter
2014-12-05 22:09 ` [PATCH 42/69] staging: unisys: fix CamelCase global variables in file.c Benjamin Romer
2014-12-05 22:09 ` [PATCH 43/69] staging: unisys: get rid of HAVE_UNLOCKED_IOCTL code Benjamin Romer
2014-12-05 22:09 ` [PATCH 44/69] staging: unisys: get rid of goto in visorchipset_open() Benjamin Romer
2014-12-05 22:09 ` [PATCH 45/69] staging: unisys: fix CamelCase in visorchipset_mmap() Benjamin Romer
2014-12-05 22:09 ` [PATCH 46/69] staging: unisys: get rid of goto in visorchipset_ioctl() Benjamin Romer
2014-12-05 22:09 ` [PATCH 47/69] staging: unisys: visorchannel: Rename CamelCase variable channelBytes Benjamin Romer
2014-12-05 22:09 ` [PATCH 48/69] staging: unisys: visorchannel: Rename CamelCase variable nQueues Benjamin Romer
2014-12-05 22:09 ` [PATCH 49/69] staging: unisys: visorchannel: Describe spinlocks in VISORCHANNEL_Tag struct Benjamin Romer
2014-12-05 22:09 ` [PATCH 50/69] staging: unisys: Remove VISORCHANNEL typedef Benjamin Romer
2014-12-05 22:09 ` [PATCH 51/69] staging: unisys: remove ERRDRV and related macros Benjamin Romer
2015-01-10  1:36   ` Greg KH
2014-12-05 22:09 ` [PATCH 52/69] staging: unisys: remove DBGINF() macros Benjamin Romer
2015-01-10  1:37   ` Greg KH
2014-12-05 22:09 ` [PATCH 53/69] staging: unisys: get rid of LOGINFO() macros Benjamin Romer
2015-01-10  1:38   ` Greg KH
2014-12-05 22:09 ` [PATCH 54/69] staging: unisys: remove LOGVER() macros Benjamin Romer
2014-12-05 22:09 ` [PATCH 55/69] staging: unisys: get rid of LOGWRN() macro and uisklog.h Benjamin Romer
2015-01-10  1:40   ` Greg KH
2015-01-21 14:41     ` Romer, Benjamin M
2015-01-21 15:53       ` Dan Carpenter
2015-01-22  3:19         ` Greg KH
2015-01-22 14:24           ` Romer, Benjamin M
2014-12-05 22:09 ` [PATCH 56/69] staging: unisys: virthba: Remove unneeded spaces after casts Benjamin Romer
2014-12-05 22:09 ` [PATCH 57/69] staging: unisys: virthba: Fix open parenthesis alignment checks Benjamin Romer
2014-12-05 22:09 ` [PATCH 58/69] staging: unisys: virthba: Fix logical continuation checks Benjamin Romer
2014-12-05 22:09 ` [PATCH 59/69] staging: unisys: virthba: Remove blank lines before/after braces Benjamin Romer
2014-12-05 22:09 ` [PATCH 60/69] staging: unisys: virthba: Fix missing braces at end of if-else statements Benjamin Romer
2014-12-05 22:09 ` [PATCH 61/69] staging: unisys: virthba: Change alloc calls to use var name instead of type Benjamin Romer
2014-12-05 22:09 ` [PATCH 62/69] staging: unisys: virthba: Fix a couple checkpatch problems Benjamin Romer
2014-12-05 22:09 ` [PATCH 63/69] staging: unisys: virthba: Fix "else not useful after return" warning Benjamin Romer
2014-12-05 22:09 ` [PATCH 64/69] staging: unisys: virthba: Fix warnings regarding lines over 80 characters Benjamin Romer
2014-12-05 22:09 ` [PATCH 65/69] staging: unisys: virthba: Fix a couple open parenthesis alignment issues Benjamin Romer
2014-12-05 22:09 ` [PATCH 66/69] staging: unisys: virthba: Fix CamelCase for Disk Add/Remove global variables Benjamin Romer
2014-12-05 22:09 ` [PATCH 67/69] staging: unisys: virthba: Fix remaining CamelCase " Benjamin Romer
2014-12-05 22:09 ` [PATCH 68/69] staging: unisys: virthba: Fix CamelCase for a couple function names Benjamin Romer
2014-12-05 22:09 ` [PATCH 69/69] staging: unisys: virthba: Fix CamelCase for local variables Benjamin Romer

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.