]> www.infradead.org Git - users/willy/linux.git/commitdiff
staging: vme_user: vme_tsi148.c: avoid parenthesis line ending
authorAntonio Riccio <linux@ariccio.me>
Thu, 26 Dec 2024 10:38:31 +0000 (10:38 +0000)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sun, 29 Dec 2024 10:33:11 +0000 (11:33 +0100)
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>
drivers/staging/vme_user/vme_tsi148.c

index 31a44025e08f5084a2b8d05aec006d8cb287cb12..733594dde9ae9dfd54e584901987a8db047aecec 100644 (file)
@@ -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;