summaryrefslogtreecommitdiff
path: root/drivers/staging/unisys
diff options
context:
space:
mode:
authorErik Arfvidson <erik.arfvidson@unisys.com>2015-11-17 13:34:58 -0500
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2015-11-17 14:25:36 -0800
commit3d05734fff784835ce8b83b029b6affbabc6faa4 (patch)
treed46734bd186c58d46cdda9e834165e238db56758 /drivers/staging/unisys
parent180e2767eb3f4d608ea5a954c8052956431593cf (diff)
downloadlwn-3d05734fff784835ce8b83b029b6affbabc6faa4.tar.gz
lwn-3d05734fff784835ce8b83b029b6affbabc6faa4.zip
staging: unisys: Fix periodic_work.c parenthesis alignment
This patch fixes checkpatch.pl message: CHECK: Alignment should match open parenthesis Signed-off-by: Erik Arfvidson <erik.arfvidson@unisys.com> Signed-off-by: Benjamin Romer <benjamin.romer@unisys.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/unisys')
-rw-r--r--drivers/staging/unisys/visorbus/periodic_work.c11
1 files changed, 6 insertions, 5 deletions
diff --git a/drivers/staging/unisys/visorbus/periodic_work.c b/drivers/staging/unisys/visorbus/periodic_work.c
index 115b7aa9560a..00b152764f84 100644
--- a/drivers/staging/unisys/visorbus/periodic_work.c
+++ b/drivers/staging/unisys/visorbus/periodic_work.c
@@ -43,11 +43,12 @@ static void periodic_work_func(struct work_struct *work)
(*pw->workfunc)(pw->workfuncarg);
}
-struct periodic_work *visor_periodic_work_create(ulong jiffy_interval,
- struct workqueue_struct *workqueue,
- void (*workfunc)(void *),
- void *workfuncarg,
- const char *devnam)
+struct periodic_work
+*visor_periodic_work_create(ulong jiffy_interval,
+ struct workqueue_struct *workqueue,
+ void (*workfunc)(void *),
+ void *workfuncarg,
+ const char *devnam)
{
struct periodic_work *pw;