commit | 5f70306ba0972a13be49c97ade1324b22f6ca1c9 | [log] [tgz] |
---|---|---|
author | Aya Mahfouz <mahfouz.saif.elyazal@gmail.com> | Fri Feb 27 14:54:23 2015 +0200 |
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | Sun Mar 01 16:20:00 2015 -0800 |
tree | 7a4812cb3b879898b17bb757a4375616d76a3c4d | |
parent | 179e7dcde410d820f38ad80b28e9efe26030bb8d [diff] |
staging: rtl8188eu: os_dep: 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>