commit | 55bbc4ffde46c5797feb872721ca4562c6e8fce4 | [log] [tgz] |
---|---|---|
author | Janani Ravichandran <janani.rvchndrn@gmail.com> | Thu Feb 18 17:28:07 2016 -0500 |
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | Sat Feb 20 15:24:51 2016 -0800 |
tree | 93baf2f22777c4b7b8117537df8ee73c384b6c63 | |
parent | 7aa47db9d8721df0608f70fcc6c01cd766b5cc94 [diff] |
staging: mt29f_spinand: Remove unneeded else following 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>