commit | 6019ee4095d9a40927060d33e79344a3f34b8a96 | [log] [tgz] |
---|---|---|
author | Haneen Mohammed <hamohammed.sa@gmail.com> | Sun Mar 08 00:02:34 2015 +0300 |
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | Mon Mar 09 13:30:40 2015 +0100 |
tree | 445e21ec94e9938f0ad6635c3da1f5391803e19e | |
parent | acd3f6cf0579ef993bbfc50b84592fc8019f7887 [diff] |
Staging: dgap: 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> Reviewed-by: Daniel Baluta <daniel.baluta@intel.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>