From 74e1129b906c516df21abc40cbbd1ffe1dd9e5da Mon Sep 17 00:00:00 2001 From: David Kershner Date: Wed, 30 Aug 2017 13:36:14 -0400 Subject: [PATCH] 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 Reviewed-by: Tim Sell Signed-off-by: Greg Kroah-Hartman --- drivers/staging/unisys/visorbus/visorchannel.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- 2.20.1