Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
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: Gustavo A. R. Silva <garsilva@embeddedor.com> Signed-off-by: Peter Chen <peter.chen@nxp.com>
- Loading branch information