Commit fb43ceaf authored by H Hartley Sweeten's avatar H Hartley Sweeten Committed by Greg Kroah-Hartman
Browse files

staging: comedi: addi_apci_3120: move start_src check into apci3120_cyclic_ai()



For aesthetics, move the check of the cmd->start_src.

Signed-off-by: default avatarH Hartley Sweeten <hsweeten@visionengravers.com>
Reviewed-by: default avatarIan Abbott <abbotti@mev.co.uk>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent b72b3656
Loading
Loading
Loading
Loading
+5 −7
Original line number Diff line number Diff line
@@ -404,8 +404,12 @@ static int apci3120_cyclic_ai(int mode,
						cmd->flags);
	}

	if (devpriv->b_ExttrigEnable)
	if (cmd->start_src == TRIG_EXT) {
		devpriv->b_ExttrigEnable = 1;
		apci3120_exttrig_enable(dev, true);
	} else {
		devpriv->b_ExttrigEnable = 0;
	}

	switch (mode) {
	case 1:
@@ -488,14 +492,8 @@ static int apci3120_cyclic_ai(int mode,
static int apci3120_ai_cmd(struct comedi_device *dev,
			   struct comedi_subdevice *s)
{
	struct apci3120_private *devpriv = dev->private;
	struct comedi_cmd *cmd = &s->async->cmd;

	if (cmd->start_src == TRIG_EXT)
		devpriv->b_ExttrigEnable = 1;
	else
		devpriv->b_ExttrigEnable = 0;

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