commit | ecc11b42c79db41b45fe6f8db46ae8ca54cf126a | [log] [tgz] |
---|---|---|
author | Simran Singhal <singhalsimran0@gmail.com> | Thu Mar 26 03:13:12 2020 +0530 |
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | Thu Mar 26 08:37:38 2020 +0100 |
tree | 7ac7c157733f48f701c2038ae19fc309a1983e0e | |
parent | 1b590af9fa2d7d8407c4e780eb506d536157d36b [diff] |
staging: rtl8723bs: hal: Compress return logic Simplify function returns by merging assignment and return into one command line. Found with Coccinelle @@ local idexpression ret; expression e; @@ -ret = +return e; -return ret; Signed-off-by: Simran Singhal <singhalsimran0@gmail.com> Link: https://lore.kernel.org/r/20200325214312.GA1936@simran-Inspiron-5558 Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>