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

Signed-off-by: Andrey Skvortsov <Andrej.Skvortzov@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
Andrey Skvortsov 2014-06-19 11:24:13 +04:00 committed by Greg Kroah-Hartman
parent 87822e41af
commit e4f3771f78
1 changed files with 4 additions and 4 deletions

View File

@ -408,18 +408,18 @@ static ctl_table_t parent_table[] = {
};
#endif
void obd_sysctl_init (void)
void obd_sysctl_init(void)
{
#ifdef CONFIG_SYSCTL
if ( !obd_table_header )
if (!obd_table_header)
obd_table_header = register_sysctl_table(parent_table);
#endif
}
void obd_sysctl_clean (void)
void obd_sysctl_clean(void)
{
#ifdef CONFIG_SYSCTL
if ( obd_table_header )
if (obd_table_header)
unregister_sysctl_table(obd_table_header);
obd_table_header = NULL;
#endif