mirror of
https://github.com/torvalds/linux.git
synced 2026-05-25 07:33:19 +02:00
staging: vme_user: fix check lines not ending with '(' in vme_fake.c
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>
This commit is contained in:
parent
b25f7cb305
commit
f6a90f103f
|
|
@ -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]);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user