Files
linux/drivers
Shreeya Patel 5826e028de Staging: rtl8723bs: Merge assignment with return
Merge the assignment and return statements to return the value
directly. Done using the following semantic patch by coccinelle.

@@
local idexpression ret;
expression e;
@@

-ret =
+return
     e;
-return ret;

Also, remove the variable declaration and some braces
that became useless after the merge.

Signed-off-by: Shreeya Patel <shreeya.patel23498@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
2017-12-13 12:48:46 +01:00
..
2017-11-30 13:37:29 +01:00
2017-11-13 01:34:14 +01:00
2017-08-29 13:46:35 +02:00
2017-12-02 21:31:03 -05:00