[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-ID: <CAK-LDbJi8VeQAmK4AaCoD4RqOW09b-vOzJfLJwHVQDFh7oYZ0A@mail.gmail.com>
Date: Fri, 31 Jul 2015 11:02:30 +0530
From: Vaishali Thakkar <vthakkar1994@...il.com>
To: Shraddha Barke <shraddha.6596@...il.com>
Cc: linux-wireless@...r.kernel.org, Rachel Kim <rachel.kim@...el.com>,
Dean Lee <dean.lee@...el.com>,
Chris Park <chris.park@...el.com>,
Greg Kroah-Hartman <gregkh@...uxfoundation.org>,
Johnny Kim <johnny.kim@...el.com>,
linux-kernel@...r.kernel.org, devel@...verdev.osuosl.org
Subject: Re: [PATCH] Staging:wilc1000 :Remove braces for single statement blocks
On 31 Jul 2015 10:49, "Shraddha Barke" <shraddha.6596@...il.com> wrote:
>
> This patch fixes the following checkpatch.pl warning:
>
> WARNING: braces {} are not necessary for single statement blocks
There should be one line space between your commit log
and Signed-off-by line.
> Signed-off-by: Shraddha Barke <shraddha.6596@...il.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
>
> --
> To unsubscribe from this list: send the line "unsubscribe linux-wireless" in
> the body of a message to majordomo@...r.kernel.org
> More majordomo info at http://vger.kernel.org/majordomo-info.html
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists