All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] Staging:emxx_udc:emxx_udc: Compression of lines for immediate return
@ 2016-10-31  8:20 Nadim Almas
  0 siblings, 0 replies; only message in thread
From: Nadim Almas @ 2016-10-31  8:20 UTC (permalink / raw)
  To: gregkh, janani.rvchndrn; +Cc: devel, linux-kernel

This patch compresses two lines into a single line
if immediate return statement is found. Remove variable data as
it is no longer needed.

It is done using script Coccinelle. And coccinelle uses the following
semantic patch for this compression function

@@
local idexpression ret;
expression e;
@@

-ret =
+return
     e;
-return ret;

Signed-off-by: Nadim Almas <nadim.902@gmail.com>
---
 drivers/staging/emxx_udc/emxx_udc.c       | 4 +---
 
 1 files changed, 1 insertions(+), 3 deletions(-)

diff --git a/drivers/staging/emxx_udc/emxx_udc.c b/drivers/staging/emxx_udc/emxx_udc.c
index abe2aaf..31f4206 100644
--- a/drivers/staging/emxx_udc/emxx_udc.c
+++ b/drivers/staging/emxx_udc/emxx_udc.c
@@ -2979,9 +2979,7 @@ static int nbu2ss_gad_get_frame(struct usb_gadget *pgadget)
 	if (data == 0)
 		return -EINVAL;
 
-	data = _nbu2ss_readl(&udc->p_regs->USB_ADDRESS) & FRAME;
-
-	return data;
+	return _nbu2ss_readl(&udc->p_regs->USB_ADDRESS) & FRAME;
 }
 
 
2.7.4

^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2016-10-31  8:20 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-10-31  8:20 [PATCH] Staging:emxx_udc:emxx_udc: Compression of lines for immediate return Nadim Almas

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.