1
0
Fork 0
alistair23-linux/drivers/staging/media/bcm2048
Rehas Sachdeva 4b9fd698ac staging: media: bcm2048: Merge assignment with return
Instead of storing the return value into a variable and then returning it, we
can club the two into a single return statement. This change was made using
the following semantic patch by Coccinelle:

@@
local idexpression ret;
expression e;
@@

-ret =
+return
     e;
-return ret;

Signed-off-by: Rehas Sachdeva <aquannie@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
2016-09-20 13:59:45 +02:00
..
Kconfig
Makefile
TODO
radio-bcm2048.c staging: media: bcm2048: Merge assignment with return 2016-09-20 13:59:45 +02:00
radio-bcm2048.h