]> git.baikalelectronics.ru Git - kernel.git/commit
Staging:emxx_udc:emxx_udc: Compression of lines for immediate return
authorNadim Almas <nadim.902@gmail.com>
Mon, 31 Oct 2016 08:20:11 +0000 (13:50 +0530)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 7 Nov 2016 10:26:57 +0000 (11:26 +0100)
commit4cd09ae14d4e64ea7c54f10ecbb2fd614a434d09
treedd603744583d905ee4c2cd1d4b2514e978ef6750
parent714fe88f69b3bfa331e24e7232a7213197882367
Staging:emxx_udc:emxx_udc: Compression of lines for immediate return

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>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/emxx_udc/emxx_udc.c