Commit b7c57dd5 authored by Janani Ravichandran's avatar Janani Ravichandran Committed by Greg Kroah-Hartman

staging: comedi: drivers: Remove unnecessary else following return

Else is unnecessary when there is a return statement in the
corresponding if block.
Coccinelle patch:

@rule1@
expression e1;
@@

	if (e1) { ... return ...; }
-       else{
	        ...
-            }

@rule2@
expression e2;
statement s1;
@@

	if(e2) { ... return ...; }
-       else
		s1
Signed-off-by: default avatarJanani Ravichandran <janani.rvchndrn@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 5f9001dc
...@@ -132,8 +132,7 @@ unsigned int comedi_isadma_poll(struct comedi_isadma *dma) ...@@ -132,8 +132,7 @@ unsigned int comedi_isadma_poll(struct comedi_isadma *dma)
result = result1; result = result1;
if (result >= desc->size || result == 0) if (result >= desc->size || result == 0)
return 0; return 0;
else return desc->size - result;
return desc->size - result;
} }
EXPORT_SYMBOL_GPL(comedi_isadma_poll); EXPORT_SYMBOL_GPL(comedi_isadma_poll);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment