staging: comedi: adl_pci9118: TRIG_INT is not vaild for scan_begin_src
The (*do_cmdtest) in this driver validated the scan_begin_src as being TRIG_FOLLOW | TRIG_TIMER | TRIG_EXT. The TRIG_INT source is not valid. Remove the Step 2 mutual compatibility check that makes sure that TRIG_INT is only used for the start_src or the scan_begin_src. 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:
parent
9aed06693d
commit
323538b825
1 changed files with 0 additions and 3 deletions
|
@ -1205,9 +1205,6 @@ static int pci9118_ai_cmdtest(struct comedi_device *dev,
|
|||
if (cmd->start_src == TRIG_EXT && cmd->scan_begin_src == TRIG_EXT)
|
||||
err |= -EINVAL;
|
||||
|
||||
if (cmd->start_src == TRIG_INT && cmd->scan_begin_src == TRIG_INT)
|
||||
err |= -EINVAL;
|
||||
|
||||
if ((cmd->scan_begin_src & (TRIG_TIMER | TRIG_EXT)) &&
|
||||
(!(cmd->convert_src & (TRIG_TIMER | TRIG_NOW))))
|
||||
err |= -EINVAL;
|
||||
|
|
Loading…
Add table
Reference in a new issue