staging: vme_user: fix check lines not ending with '(' in vme_fake.c
authorAlexon Oliveira <alexondunkan@gmail.com>
Sun, 27 Aug 2023 19:32:52 +0000 (16:32 -0300)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sun, 17 Sep 2023 07:49:29 +0000 (09:49 +0200)
Fixed all CHECK: Lines should not end with a '('
as reported by checkpatch to adhere to the Linux kernel
coding-style guidelines.

Signed-off-by: Alexon Oliveira <alexondunkan@gmail.com>
Link: https://lore.kernel.org/r/9f3e2facdc4d5e612dc00830c2da0fb19c20f2c5.1693164540.git.alexondunkan@gmail.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/vme_user/vme_fake.c

index a88d2c8a785b842ff8102602a2db62e2e524fddf..dbaf050f88e5251f136f6520e9ef0fbbcb417509 100644 (file)
@@ -403,8 +403,7 @@ static void fake_lm_check(struct fake_driver *bridge, unsigned long long addr,
                                if (((lm_base + (8 * i)) <= addr) &&
                                    ((lm_base + (8 * i) + 8) > addr)) {
                                        if (bridge->lm_callback[i])
-                                               bridge->lm_callback[i](
-                                                       bridge->lm_data[i]);
+                                               bridge->lm_callback[i](bridge->lm_data[i]);
                                }
                        }
                }