staging: comedi: adv_pci1710: cmd->scan_begin_src can only be TRIG_FOLLOW
In Step 1 of the (*do_cmdtest), the cmd->scan_begin_src is checked to only allow TRIG_FOLLOW. The (*do_cmd) does not need to recheck this. 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
4b1fea003c
commit
c56cad003d
|
@ -1115,7 +1115,6 @@ static int pci171x_ai_cmd(struct comedi_device *dev, struct comedi_subdevice *s)
|
|||
{
|
||||
struct comedi_cmd *cmd = &s->async->cmd;
|
||||
|
||||
if (cmd->scan_begin_src == TRIG_FOLLOW) { /* mode 1, 2, 3 */
|
||||
if (cmd->convert_src == TRIG_TIMER) { /* mode 1 and 2 */
|
||||
return pci171x_ai_docmd_and_mode(cmd->start_src ==
|
||||
TRIG_EXT ? 2 : 1, dev,
|
||||
|
@ -1124,7 +1123,6 @@ static int pci171x_ai_cmd(struct comedi_device *dev, struct comedi_subdevice *s)
|
|||
if (cmd->convert_src == TRIG_EXT) { /* mode 3 */
|
||||
return pci171x_ai_docmd_and_mode(3, dev, s);
|
||||
}
|
||||
}
|
||||
|
||||
return -1;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue