Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
staging: rtl8723au: os_dep: Remove uneeded return variable
This patch removes uneeded return variables, using only 'return _SUCCESS' instead. It fixes the following warning detected by coccinelle: Unneeded variable. It was done using the following semantic patch: @@ identifier ret; type T; expression e; @@ -T ret = e; ... when != ret when strict -return ret; +return e; Signed-off-by: Roberta Dobrescu <[email protected]> Signed-off-by: Greg Kroah-Hartman <[email protected]>
- Loading branch information