Commit e4f3771f authored by Andrey Skvortsov's avatar Andrey Skvortsov Committed by Greg Kroah-Hartman

staging: lustre: obdclass: linux-sysctl.c: fix unnecessary spaces coding style issue

Signed-off-by: default avatarAndrey Skvortsov <Andrej.Skvortzov@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 87822e41
...@@ -408,18 +408,18 @@ static ctl_table_t parent_table[] = { ...@@ -408,18 +408,18 @@ static ctl_table_t parent_table[] = {
}; };
#endif #endif
void obd_sysctl_init (void) void obd_sysctl_init(void)
{ {
#ifdef CONFIG_SYSCTL #ifdef CONFIG_SYSCTL
if ( !obd_table_header ) if (!obd_table_header)
obd_table_header = register_sysctl_table(parent_table); obd_table_header = register_sysctl_table(parent_table);
#endif #endif
} }
void obd_sysctl_clean (void) void obd_sysctl_clean(void)
{ {
#ifdef CONFIG_SYSCTL #ifdef CONFIG_SYSCTL
if ( obd_table_header ) if (obd_table_header)
unregister_sysctl_table(obd_table_header); unregister_sysctl_table(obd_table_header);
obd_table_header = NULL; obd_table_header = NULL;
#endif #endif
......
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