All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] Remove braces from single statement block
@ 2015-02-22 10:42 Vatika Harlalka
  2015-02-22 10:58 ` [Outreachy kernel] " Julia Lawall
  2015-02-26 23:16 ` Greg KH
  0 siblings, 2 replies; 3+ messages in thread
From: Vatika Harlalka @ 2015-02-22 10:42 UTC (permalink / raw)
  To: outreachy-kernel

This patch is to remove braces from single statement if condition
to follow kernel coding convention.

Signed-off-by: Vatika Harlalka <vatikaharlalka@gmail.com>
---
 drivers/staging/rtl8188eu/hal/fw.c | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/drivers/staging/rtl8188eu/hal/fw.c b/drivers/staging/rtl8188eu/hal/fw.c
index 3b28754..a71c542 100644
--- a/drivers/staging/rtl8188eu/hal/fw.c
+++ b/drivers/staging/rtl8188eu/hal/fw.c
@@ -154,9 +154,8 @@ static int _rtl88e_fw_free_to_go(struct adapter *adapt)
 			break;
 	} while (counter++ < POLLING_READY_TIMEOUT_COUNT);
 
-	if (counter >= POLLING_READY_TIMEOUT_COUNT) {
+	if (counter >= POLLING_READY_TIMEOUT_COUNT)
 		goto exit;
-	}
 
 	value32 = usb_read32(adapt, REG_MCUFWDL);
 	value32 |= MCUFWDL_RDY;
-- 
1.9.1



^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [Outreachy kernel] [PATCH] Remove braces from single statement block
  2015-02-22 10:42 [PATCH] Remove braces from single statement block Vatika Harlalka
@ 2015-02-22 10:58 ` Julia Lawall
  2015-02-26 23:16 ` Greg KH
  1 sibling, 0 replies; 3+ messages in thread
From: Julia Lawall @ 2015-02-22 10:58 UTC (permalink / raw)
  To: Vatika Harlalka; +Cc: outreachy-kernel

On Sun, 22 Feb 2015, Vatika Harlalka wrote:

> This patch is to remove braces from single statement if condition
> to follow kernel coding convention.

OK toleave this one as is, but you don't need the "This patch is to" part.
It is a little bit obvious from the context.

julia

> Signed-off-by: Vatika Harlalka <vatikaharlalka@gmail.com>
> ---
>  drivers/staging/rtl8188eu/hal/fw.c | 3 +--
>  1 file changed, 1 insertion(+), 2 deletions(-)
>
> diff --git a/drivers/staging/rtl8188eu/hal/fw.c b/drivers/staging/rtl8188eu/hal/fw.c
> index 3b28754..a71c542 100644
> --- a/drivers/staging/rtl8188eu/hal/fw.c
> +++ b/drivers/staging/rtl8188eu/hal/fw.c
> @@ -154,9 +154,8 @@ static int _rtl88e_fw_free_to_go(struct adapter *adapt)
>  			break;
>  	} while (counter++ < POLLING_READY_TIMEOUT_COUNT);
>
> -	if (counter >= POLLING_READY_TIMEOUT_COUNT) {
> +	if (counter >= POLLING_READY_TIMEOUT_COUNT)
>  		goto exit;
> -	}
>
>  	value32 = usb_read32(adapt, REG_MCUFWDL);
>  	value32 |= MCUFWDL_RDY;
> --
> 1.9.1
>
> --
> You received this message because you are subscribed to the Google Groups "outreachy-kernel" group.
> To unsubscribe from this group and stop receiving emails from it, send an email to outreachy-kernel+unsubscribe@googlegroups.com.
> To post to this group, send email to outreachy-kernel@googlegroups.com.
> To view this discussion on the web visit https://groups.google.com/d/msgid/outreachy-kernel/20150222104213.GA1215%40gmail.com.
> For more options, visit https://groups.google.com/d/optout.
>


^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [Outreachy kernel] [PATCH] Remove braces from single statement block
  2015-02-22 10:42 [PATCH] Remove braces from single statement block Vatika Harlalka
  2015-02-22 10:58 ` [Outreachy kernel] " Julia Lawall
@ 2015-02-26 23:16 ` Greg KH
  1 sibling, 0 replies; 3+ messages in thread
From: Greg KH @ 2015-02-26 23:16 UTC (permalink / raw)
  To: Vatika Harlalka; +Cc: outreachy-kernel

On Sun, Feb 22, 2015 at 04:12:13PM +0530, Vatika Harlalka wrote:
> This patch is to remove braces from single statement if condition
> to follow kernel coding convention.
> 
> Signed-off-by: Vatika Harlalka <vatikaharlalka@gmail.com>
> ---
>  drivers/staging/rtl8188eu/hal/fw.c | 3 +--
>  1 file changed, 1 insertion(+), 2 deletions(-)

Please resend and change the Subject: to show that you are working in
the staging directory on the rtl8188eu driver.

thanks,

greg k-h


^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2015-02-26 23:16 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-02-22 10:42 [PATCH] Remove braces from single statement block Vatika Harlalka
2015-02-22 10:58 ` [Outreachy kernel] " Julia Lawall
2015-02-26 23:16 ` Greg KH

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.