media: Staging: media: atomisp: Merge assignment with return
Merge the assignment and the 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;
Signed-off-by:
Srishti Sharma <srishtishar@gmail.com>
Acked-by:
Julia Lawall <julia.lawall@lip6.fr>
Signed-off-by:
Sakari Ailus <sakari.ailus@linux.intel.com>
Signed-off-by:
Mauro Carvalho Chehab <mchehab@s-opensource.com>
Loading
Please sign in to comment