Skip to content

Commit 33bd646

Browse files
Antonio Ricciogregkh
authored andcommitted
staging: vme_user: vme_tsi148.c: avoid parenthesis line ending
Adhere to Linux Kernel coding style. Reported by checkpatch CHECK: Lines should not end with a '(' Signed-off-by: Antonio Riccio <[email protected]> Link: https://lore.kernel.org/r/Z20yIvcQOGHMfufx@stream-circuit Signed-off-by: Greg Kroah-Hartman <[email protected]>
1 parent 5d4db9c commit 33bd646

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

drivers/staging/vme_user/vme_tsi148.c

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -761,8 +761,7 @@ static int tsi148_alloc_resource(struct vme_master_resource *image,
761761
goto err_resource;
762762
}
763763

764-
image->kern_base = ioremap(
765-
image->bus_resource.start, size);
764+
image->kern_base = ioremap(image->bus_resource.start, size);
766765
if (!image->kern_base) {
767766
dev_err(tsi148_bridge->parent, "Failed to remap resource\n");
768767
retval = -ENOMEM;

0 commit comments

Comments
 (0)