提交 55bbc4ff 编写于 作者: J Janani Ravichandran 提交者: Greg Kroah-Hartman

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: NJanani Ravichandran <janani.rvchndrn@gmail.com>
Signed-off-by: NGreg Kroah-Hartman <gregkh@linuxfoundation.org>
上级 7aa47db9
...@@ -175,7 +175,7 @@ static int wait_till_ready(struct spi_device *spi_nand) ...@@ -175,7 +175,7 @@ static int wait_till_ready(struct spi_device *spi_nand)
retval = spinand_read_status(spi_nand, &stat); retval = spinand_read_status(spi_nand, &stat);
if (retval < 0) if (retval < 0)
return -1; return -1;
else if (!(stat & 0x1)) if (!(stat & 0x1))
break; break;
cond_resched(); cond_resched();
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册