staging: unisys: visorbus: Fix parameter alignment.
authorDavid Kershner <david.kershner@unisys.com>
Wed, 30 Aug 2017 17:36:14 +0000 (13:36 -0400)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 31 Aug 2017 16:17:38 +0000 (18:17 +0200)
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>
drivers/staging/unisys/visorbus/visorchannel.c

index 6afc74516f6019d399ede7f8420c3ff26015c829..396921700005edceb335cd1c933888ed927212c4 100644 (file)
@@ -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;