Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit bfc81c4a authored by Chase Southwood's avatar Chase Southwood Committed by Greg Kroah-Hartman
Browse files

staging: comedi: hwdrv_apci3120: else is not useful after return



The statement nested in an else after a return may be brought out one
indent level, the else is useless.

Signed-off-by: default avatarChase Southwood <chase.southwood@gmail.com>
Reviewed-by: default avatarIan Abbott <abbotti@mev.co.uk>
Cc: H Hartley Sweeten <hsweeten@visionengravers.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 8aeec82f
Loading
Loading
Loading
Loading
+2 −2
Original line number Original line Diff line number Diff line
@@ -1217,7 +1217,7 @@ static int apci3120_ai_cmd(struct comedi_device *dev,


	if (cmd->scan_begin_src == TRIG_FOLLOW)
	if (cmd->scan_begin_src == TRIG_FOLLOW)
		return apci3120_cyclic_ai(1, dev, s);
		return apci3120_cyclic_ai(1, dev, s);
	else	/* TRIG_TIMER */
	/* TRIG_TIMER */
	return apci3120_cyclic_ai(2, dev, s);
	return apci3120_cyclic_ai(2, dev, s);
}
}