git.openpandora.org
/
pandora-kernel.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
22905b8
)
Staging: rtl8188eu: Remove redundant local variable
author
Somya Anand
<somyaanand214@gmail.com>
Wed, 4 Mar 2015 08:40:44 +0000
(14:10 +0530)
committer
Greg Kroah-Hartman
<gregkh@linuxfoundation.org>
Fri, 6 Mar 2015 23:30:07 +0000
(15:30 -0800)
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>
No differences found