mirror of
https://github.com/Dasharo/linux.git
synced 2026-03-06 15:25:10 -08:00
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 <linux@ariccio.me>
Link: https://lore.kernel.org/r/Z20yIvcQOGHMfufx@stream-circuit
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
5d4db9cf41
commit
33bd646527
@@ -761,8 +761,7 @@ static int tsi148_alloc_resource(struct vme_master_resource *image,
|
||||
goto err_resource;
|
||||
}
|
||||
|
||||
image->kern_base = ioremap(
|
||||
image->bus_resource.start, size);
|
||||
image->kern_base = ioremap(image->bus_resource.start, size);
|
||||
if (!image->kern_base) {
|
||||
dev_err(tsi148_bridge->parent, "Failed to remap resource\n");
|
||||
retval = -ENOMEM;
|
||||
|
||||
Reference in New Issue
Block a user