Commit 2291b268 authored by Benjamin Romer's avatar Benjamin Romer Committed by Greg Kroah-Hartman

staging: unisys: refactor visorutil_mod_init()

Fix the function name declaration so it is just one line, and add the missing
brackets to the else clause in the if statement.
Signed-off-by: default avatarBenjamin Romer <benjamin.romer@unisys.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 670db786
...@@ -51,14 +51,14 @@ static __init uint32_t visorutil_spar_detect(void) ...@@ -51,14 +51,14 @@ static __init uint32_t visorutil_spar_detect(void)
} }
} }
static __init int static __init int visorutil_mod_init(void)
visorutil_mod_init(void)
{ {
if (visorutil_spar_detect()) { if (visorutil_spar_detect()) {
unisys_spar_platform = TRUE; unisys_spar_platform = TRUE;
return 0; return 0;
} else } else {
return -ENODEV; return -ENODEV;
}
} }
static __exit void static __exit void
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment