commit | 0c596a31ec3c3db2fe5ee78e9f46ae2e0bcb9aa0 | [log] [tgz] |
---|---|---|
author | Aya Mahfouz <mahfouz.saif.elyazal@gmail.com> | Fri Feb 27 14:51:29 2015 +0200 |
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | Sun Mar 01 15:11:08 2015 -0800 |
tree | 4e2520522feb668d52853f92d4d60d7a7f3cbefc | |
parent | 0a19b14cc5c6553c29e861a3516c5720c940b8a3 [diff] |
staging: vt6655: remove unused variable This patch removes a variable that was simply used to store the return value of a function call before returning it. The issue was detected and resolved using the following coccinelle script: @@ identifier len,f; @@ -int len; ... when != len when strict -len = +return f(...); -return len; Signed-off-by: Aya Mahfouz <mahfouz.saif.elyazal@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>