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: Janani Ravichandran <janani.rvchndrn@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
Janani Ravichandran 2016-02-18 17:48:17 -05:00 коммит произвёл Greg Kroah-Hartman
Родитель 5f9001dc42
Коммит b7c57dd54a
1 изменённых файлов: 1 добавлений и 2 удалений

Просмотреть файл

@ -132,8 +132,7 @@ unsigned int comedi_isadma_poll(struct comedi_isadma *dma)
result = result1;
if (result >= desc->size || result == 0)
return 0;
else
return desc->size - result;
return desc->size - result;
}
EXPORT_SYMBOL_GPL(comedi_isadma_poll);