Skip to content
Commit 734c58ae authored by Gustavo A. R. Silva's avatar Gustavo A. R. Silva Committed by Peter Chen
Browse files

usb: chipidea: udc: compress return logic into line



Simplify return logic to avoid unnecessary variable assignment.

This issue was detected using Coccinelle and the following
semantic patch:

@@
local idexpression ret;
expression e;
@@

-ret =
+return
     e;
-return ret;

Signed-off-by: default avatarGustavo A. R. Silva <garsilva@embeddedor.com>
Signed-off-by: default avatarPeter Chen <peter.chen@nxp.com>
parent 5771a8c0
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment