]> git.karo-electronics.de Git - linux-beck.git/commitdiff
staging: lustre: obdclass: linux-sysctl.c: fix unnecessary spaces coding style issue
authorAndrey Skvortsov <skvortsov.av@summatechnology.ru>
Thu, 19 Jun 2014 07:24:13 +0000 (11:24 +0400)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Fri, 20 Jun 2014 00:22:24 +0000 (17:22 -0700)
Signed-off-by: Andrey Skvortsov <Andrej.Skvortzov@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/lustre/lustre/obdclass/linux/linux-sysctl.c

index 4dcdfc247c73ba4f3d55d8e28211b4235fc23854..140b5706d0fac3689cacfc94e5eafe5a9b8a3065 100644 (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