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:
parent
87822e41af
commit
e4f3771f78
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue