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

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.