commit | 9397ce2104d70feb6798690921a296c6ccf22564 | [log] [tgz] |
---|---|---|
author | Janani Ravichandran <janani.rvchndrn@gmail.com> | Thu Feb 18 17:22:50 2016 -0500 |
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | Sat Feb 20 15:14:59 2016 -0800 |
tree | 28441d9bfd0e2224eaca2ea23cd6762438b3bbe2 | |
parent | 453dd922c4db55905796209af4be1503c54cd84f [diff] |
staging: fsl-mc: 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>