All of lore.kernel.org
 help / color / mirror / Atom feed
From: Benjamin Romer <benjamin.romer@unisys.com>
To: gregkh@linuxfoundation.org
Cc: driverdev-devel@linuxdriverproject.org,
	sparmaintainer@unisys.com,
	Benjamin Romer <benjamin.romer@unisys.com>
Subject: [PATCH 14/69] staging: unisys: remove extra parens from uislib_enable_channel_interrupts()
Date: Fri, 5 Dec 2014 17:08:49 -0500	[thread overview]
Message-ID: <1417817384-3811-15-git-send-email-benjamin.romer@unisys.com> (raw)
In-Reply-To: <1417817384-3811-1-git-send-email-benjamin.romer@unisys.com>

Get rid of the extra parenthesis in uislib_enable_channel_interrupts().

Signed-off-by: Bryan Thompson <bryan.thompson@unisys.com>
Signed-off-by: Benjamin Romer <benjamin.romer@unisys.com>
---
 drivers/staging/unisys/uislib/uislib.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/staging/unisys/uislib/uislib.c b/drivers/staging/unisys/uislib/uislib.c
index 4d15844..d6151ee 100644
--- a/drivers/staging/unisys/uislib/uislib.c
+++ b/drivers/staging/unisys/uislib/uislib.c
@@ -1403,7 +1403,7 @@ uislib_enable_channel_interrupts(u32 bus_no, u32 dev_no,
 	dev->interrupt = interrupt;
 	dev->interrupt_context = interrupt_context;
 	dev->polling = TRUE;
-	list_add_tail(&(dev->list_polling_device_channels),
+	list_add_tail(&dev->list_polling_device_channels,
 		      &List_Polling_Device_Channels);
 	up(&Lock_Polling_Device_Channels);
 }
-- 
2.1.0

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

  parent reply	other threads:[~2014-12-05 22:11 UTC|newest]

Thread overview: 83+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
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 ` Benjamin Romer [this message]
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

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=1417817384-3811-15-git-send-email-benjamin.romer@unisys.com \
    --to=benjamin.romer@unisys.com \
    --cc=driverdev-devel@linuxdriverproject.org \
    --cc=gregkh@linuxfoundation.org \
    --cc=sparmaintainer@unisys.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 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.