Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit d710e138 authored by NeilBrown's avatar NeilBrown
Browse files

md: remove space after function name in declaration and call.



Having
   function (args)
instead of
   function(args)

make is harder to search for calls of particular functions.
So remove all those spaces.

Signed-off-by: default avatarNeilBrown <neilb@suse.de>
parent fb4d8c76
Loading
Loading
Loading
Loading
+13 −13
Original line number Diff line number Diff line
@@ -6295,7 +6295,7 @@ static int __init md_init(void)
	raid_table_header = register_sysctl_table(raid_root_table);

	md_geninit();
	return (0);
	return 0;
}


+15 −15

File changed.

Contains only whitespace changes.

+5 −5

File changed.

Contains only whitespace changes.