commit | 5f9001dc4221a3d63e2ad5f6d5aef159c2734704 | [log] [tgz] |
---|---|---|
author | Janani Ravichandran <janani.rvchndrn@gmail.com> | Thu Feb 18 17:39:11 2016 -0500 |
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | Sat Feb 20 15:24:51 2016 -0800 |
tree | fd7f4beeef8d454d23aa75059902e9a35abd5c66 | |
parent | 55bbc4ffde46c5797feb872721ca4562c6e8fce4 [diff] |
staging: android: Remove unneeded else following a return Remove unnecessary else when there is a return statement in the corresponding if block. Coccinelle patch used: @rule1@ expression e1; @@ if (e1) { ... return ...; } - else{ ... - } @rule2@ expression e2; statement s1; @@ if(e2) { ... return ...; } - else s1 Signed-off-by: Janani Ravichandran <janani.rvchndrn@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>