commit | e623d0f3f92960a826ae30dc861165f21752cdc8 | [log] [tgz] |
---|---|---|
author | Cristina Opriceana <cristina.opriceana@gmail.com> | Thu Mar 12 04:22:38 2015 +0200 |
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | Mon Mar 16 16:00:20 2015 +0100 |
tree | 650a9159928fb5b92882ade6bf32b85fc9d5d0eb | |
parent | 8b9733c1ad884548ba6417fee239e54693719f41 [diff] |
Staging: rtl8192e: Remove unnecessary variables This patch removes unnecessary intermediary variables in return lines and uses actual values. Found by coccinelle using this semantic patch: @@ type T; expression expr; identifier r; @@ -T r = expr; ... when != r when strict -return r; +return expr; Signed-off-by: Cristina Opriceana <cristina.opriceana@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>