commit | f4353ee3d3af22641beb99a146ef136f33952e80 | [log] [tgz] |
---|---|---|
author | Rehas Sachdeva <aquannie@gmail.com> | Tue Sep 20 01:05:54 2016 +0530 |
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | Tue Sep 20 13:59:45 2016 +0200 |
tree | d1ce8a4c24d73a98cbf26693241b8aaaf846e255 | |
parent | 520a28443fb2f28a663053feb4431c0083268d75 [diff] |
staging: wlan-ng: Remove unnecessary variable usage Instead of storing the return value into a variable and then returning it, we can club the two into a single return statement. This change was made using the following semantic patch by Coccinelle: @@ local idexpression ret; expression e; @@ -ret = +return e; -return ret; Signed-off-by: Rehas Sachdeva <aquannie@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>