mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-05-10 17:31:37 -04:00
staging: comedi: cb_pcidas64: remove unnecessary Step 2b test in (*do_cmdtest)
This test is unnecessary. The cfc_check_trigger_src() in Step 1 ensures that the trigger source is one of these values and Step 2 makes sure it's only one of these values. Signed-off-by: H Hartley Sweeten <hsweeten@visionengravers.com> Reviewed-by: Ian Abbott <abbotti@mev.co.uk> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
0fb21b2c1a
commit
a5c9c71f89
@@ -2078,9 +2078,6 @@ static int ai_cmdtest(struct comedi_device *dev, struct comedi_subdevice *s,
|
||||
|
||||
if (cmd->convert_src == TRIG_EXT && cmd->scan_begin_src == TRIG_TIMER)
|
||||
err |= -EINVAL;
|
||||
if (cmd->stop_src != TRIG_COUNT &&
|
||||
cmd->stop_src != TRIG_NONE && cmd->stop_src != TRIG_EXT)
|
||||
err |= -EINVAL;
|
||||
|
||||
if (err)
|
||||
return 2;
|
||||
|
||||
Reference in New Issue
Block a user