mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-05-09 06:41:06 -04:00
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>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
7aa47db9d8
commit
55bbc4ffde
@@ -175,7 +175,7 @@ static int wait_till_ready(struct spi_device *spi_nand)
|
||||
retval = spinand_read_status(spi_nand, &stat);
|
||||
if (retval < 0)
|
||||
return -1;
|
||||
else if (!(stat & 0x1))
|
||||
if (!(stat & 0x1))
|
||||
break;
|
||||
|
||||
cond_resched();
|
||||
|
||||
Reference in New Issue
Block a user