Browse Source

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>
David Kershner 8 years ago
parent
commit
74e1129b90
1 changed files with 1 additions and 1 deletions
  1. 1 1
      drivers/staging/unisys/visorbus/visorchannel.c

+ 1 - 1
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;