All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] remove return statement
@ 2017-04-15  5:05 surenderpolsani
  2017-04-15  5:17 ` Joe Perches
  2017-04-15  6:54 ` kbuild test robot
  0 siblings, 2 replies; 3+ messages in thread
From: surenderpolsani @ 2017-04-15  5:05 UTC (permalink / raw)
  To: gregkh; +Cc: devel, linux-kernel, surenderpolsani

staging : rtl8188e : remove return in void function

kernel coding style doesn't allow the return statement
in void function.

Signed-off-by: surenderpolsani <surenderpolsani@gmail.com>
---
 drivers/staging/rtl8188eu/hal/rtl8188e_dm.c | 1 -
 1 file changed, 1 deletion(-)

diff --git a/drivers/staging/rtl8188eu/hal/rtl8188e_dm.c b/drivers/staging/rtl8188eu/hal/rtl8188e_dm.c
index d04b7fb..6db0e19 100644
--- a/drivers/staging/rtl8188eu/hal/rtl8188e_dm.c
+++ b/drivers/staging/rtl8188eu/hal/rtl8188e_dm.c
@@ -165,7 +165,6 @@ void rtw_hal_dm_watchdog(struct adapter *Adapter)
 skip_dm:
 	/*  Check GPIO to determine current RF on/off and Pbc status. */
 	/*  Check Hardware Radio ON/OFF or not */
-	return;
 }
 
 void rtw_hal_dm_init(struct adapter *Adapter)
-- 
1.9.1

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

end of thread, other threads:[~2017-04-15  6:54 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-04-15  5:05 [PATCH] remove return statement surenderpolsani
2017-04-15  5:17 ` Joe Perches
2017-04-15  6:54 ` kbuild test robot

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.