[PATCH] Staging:wilc1000 :Remove braces for single statement blocks

Shraddha Barke shraddha.6596 at gmail.com
Fri Jul 31 05:15:55 UTC 2015


This patch fixes the following checkpatch.pl warning:

WARNING: braces {} are not necessary for single statement blocks
Signed-off-by: Shraddha Barke <shraddha.6596 at gmail.com>
---
 drivers/staging/wilc1000/coreconfigurator.c | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/drivers/staging/wilc1000/coreconfigurator.c b/drivers/staging/wilc1000/coreconfigurator.c
index 4d5bd1c..1143282 100644
--- a/drivers/staging/wilc1000/coreconfigurator.c
+++ b/drivers/staging/wilc1000/coreconfigurator.c
@@ -1055,10 +1055,8 @@ s32 DeallocateSurveyResults(wid_site_survey_reslts_s *pstrSurveyResults)
 {
 	s32 s32Error = WILC_SUCCESS;
 
-	if (pstrSurveyResults != NULL) {
+	if (pstrSurveyResults != NULL)
 		WILC_FREE(pstrSurveyResults);
-	}
-
 	return s32Error;
 }
 #endif
-- 
2.1.0



More information about the devel mailing list