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: NeilBrown <neilb@suse.de>
This commit is contained in:
parent
fb4d8c76e5
commit
d710e13812
3 changed files with 33 additions and 33 deletions
|
@ -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;
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue