commit | f7d63547ea7fe7e4a666aa97e095855e5064b70e | [log] [tgz] |
---|---|---|
author | Haneen Mohammed <hamohammed.sa@gmail.com> | Sun Mar 08 00:03:51 2015 +0300 |
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | Mon Mar 09 13:30:40 2015 +0100 |
tree | 70f5ac0096b4c666747e9dda24fe200d1de15178 | |
parent | 6019ee4095d9a40927060d33e79344a3f34b8a96 [diff] |
Staging: speakup: Remove unused variable This patch removes variable that was used to store only the return value of a function call. The issue was detected and resolved using the following coccinelle script: @@ expression ret; identifier f; @@ -ret = +return f(...); -return ret; Signed-off-by: Haneen Mohammed <hamohammed.sa@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>