summaryrefslogtreecommitdiffstats
path: root/drivers/staging/unisys
diff options
context:
space:
mode:
authorDavid Kershner <david.kershner@unisys.com>2017-08-30 13:36:14 -0400
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2017-08-31 18:17:38 +0200
commit74e1129b906c516df21abc40cbbd1ffe1dd9e5da (patch)
treea83fec64c875ac296179abdfd8746aaca6d80ee4 /drivers/staging/unisys
parent800da5fb3f9770c27c5b24e5a7e265f5ea51e98e (diff)
downloadlinux-74e1129b906c516df21abc40cbbd1ffe1dd9e5da.tar.bz2
staging: unisys: visorbus: Fix parameter alignment.
Fixed the following checkpatch warning: visorchannel.c:443: CHECK: Alignment should match open parenthesis Signed-off-by: David Kershner <david.kershner@unisys.com> Reviewed-by: Tim Sell <timothy.sell@unisys.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/unisys')
-rw-r--r--drivers/staging/unisys/visorbus/visorchannel.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/staging/unisys/visorbus/visorchannel.c b/drivers/staging/unisys/visorbus/visorchannel.c
index 6afc74516f60..396921700005 100644
--- a/drivers/staging/unisys/visorbus/visorchannel.c
+++ b/drivers/staging/unisys/visorbus/visorchannel.c
@@ -440,7 +440,7 @@ static struct visorchannel *visorchannel_create_guts(
goto err_destroy_channel;
channel->mapped = memremap(channel->physaddr, channel_bytes,
- MEMREMAP_WB);
+ MEMREMAP_WB);
if (!channel->mapped) {
release_mem_region(channel->physaddr, channel_bytes);
goto err_destroy_channel;