summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAntonio Riccio <linux@ariccio.me>2024-12-26 13:38:31 +0300
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2024-12-29 13:33:11 +0300
commit33bd6465275a11d4dbeceb9fe1b439d54e14fafe (patch)
treece65aee23df8c1b43b66a60dfd2eb60fd441d550
parent5d4db9cf4135d82634c7f31aac73081fba3a356e (diff)
downloadlinux-33bd6465275a11d4dbeceb9fe1b439d54e14fafe.tar.xz
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>
-rw-r--r--drivers/staging/vme_user/vme_tsi148.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/staging/vme_user/vme_tsi148.c b/drivers/staging/vme_user/vme_tsi148.c
index 31a44025e08f..733594dde9ae 100644
--- a/drivers/staging/vme_user/vme_tsi148.c
+++ b/drivers/staging/vme_user/vme_tsi148.c
@@ -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;