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>
This commit is contained in:
parent
800da5fb3f
commit
74e1129b90
|
@ -440,7 +440,7 @@ static struct visorchannel *visorchannel_create_guts(
|
||||||
goto err_destroy_channel;
|
goto err_destroy_channel;
|
||||||
|
|
||||||
channel->mapped = memremap(channel->physaddr, channel_bytes,
|
channel->mapped = memremap(channel->physaddr, channel_bytes,
|
||||||
MEMREMAP_WB);
|
MEMREMAP_WB);
|
||||||
if (!channel->mapped) {
|
if (!channel->mapped) {
|
||||||
release_mem_region(channel->physaddr, channel_bytes);
|
release_mem_region(channel->physaddr, channel_bytes);
|
||||||
goto err_destroy_channel;
|
goto err_destroy_channel;
|
||||||
|
|
Loading…
Reference in New Issue