commit | aea42ee42196ee164b46eda047953c0974536d5b | [log] [tgz] |
---|---|---|
author | Somya Anand <somyaanand214@gmail.com> | Wed Mar 04 14:10:44 2015 +0530 |
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | Fri Mar 06 15:30:07 2015 -0800 |
tree | 79412b3f0986df52a1f2c9bf4467165b23387ee8 | |
parent | 22905b8594d58a6fceeb4510a57e34571a075b45 [diff] |
Staging: rtl8188eu: Remove redundant local variable This patch removes a redundant variable "raid" and adds inline return statements. This issue is identified by the following coccinelle script: @@ expression ret; identifier f; @@ -ret = +return f(...); -return ret; Signed-off-by: Somya Anand <somyaanand214@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>