From e4f3771f78cfa3aabad15e1b2be713ab6933288a Mon Sep 17 00:00:00 2001 From: Andrey Skvortsov Date: Thu, 19 Jun 2014 11:24:13 +0400 Subject: [PATCH] staging: lustre: obdclass: linux-sysctl.c: fix unnecessary spaces coding style issue Signed-off-by: Andrey Skvortsov Signed-off-by: Greg Kroah-Hartman --- .../staging/lustre/lustre/obdclass/linux/linux-sysctl.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/drivers/staging/lustre/lustre/obdclass/linux/linux-sysctl.c b/drivers/staging/lustre/lustre/obdclass/linux/linux-sysctl.c index 4dcdfc247c73..140b5706d0fa 100644 --- a/drivers/staging/lustre/lustre/obdclass/linux/linux-sysctl.c +++ b/drivers/staging/lustre/lustre/obdclass/linux/linux-sysctl.c @@ -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 -- 2.39.2