From: Markus Elfring <elfring@xxxxxxxxxxxxxxxxxxxxx> Date: Tue, 4 Oct 2016 14:21:21 +0200 The script "checkpatch.pl" pointed information out like the following. WARNING: space prohibited between function name and open parenthesis '(' Thus fix the affected source code places. Signed-off-by: Markus Elfring <elfring@xxxxxxxxxxxxxxxxxxxxx> --- drivers/md/raid0.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/drivers/md/raid0.c b/drivers/md/raid0.c index 0315f1e..06cb172 100644 --- a/drivers/md/raid0.c +++ b/drivers/md/raid0.c @@ -680,14 +680,14 @@ static struct md_personality raid0_personality= .congested = raid0_congested, }; -static int __init raid0_init (void) +static int __init raid0_init(void) { - return register_md_personality (&raid0_personality); + return register_md_personality(&raid0_personality); } -static void raid0_exit (void) +static void raid0_exit(void) { - unregister_md_personality (&raid0_personality); + unregister_md_personality(&raid0_personality); } module_init(raid0_init); -- 2.10.1 -- To unsubscribe from this list: send the line "unsubscribe kernel-janitors" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html