diff options
author | Janani Ravichandran <janani.rvchndrn@gmail.com> | 2016-02-18 17:28:07 -0500 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2016-02-20 15:24:51 -0800 |
commit | 55bbc4ffde46c5797feb872721ca4562c6e8fce4 (patch) | |
tree | 93baf2f22777c4b7b8117537df8ee73c384b6c63 /drivers/staging/android | |
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>
Diffstat (limited to 'drivers/staging/android')
0 files changed, 0 insertions, 0 deletions