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

staging: comedi: adv_pci1710: remove 'turn' param from move_block_from_fifo()



This parameter is not used in the function. It was only used in some debug
messages that were previously removed. Remove the parameter.

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 d61b786a
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -697,7 +697,7 @@ static void pci1710_handle_every_sample(struct comedi_device *dev,
}

static int move_block_from_fifo(struct comedi_device *dev,
				struct comedi_subdevice *s, int n, int turn)
				struct comedi_subdevice *s, int n)
{
	unsigned int val;
	int ret;
@@ -739,13 +739,13 @@ static void pci1710_handle_fifo(struct comedi_device *dev,
	nsamples = devpriv->max_samples;
	if (comedi_samples_to_bytes(s, nsamples) >= s->async->prealloc_bufsz) {
		m = comedi_bytes_to_samples(s, s->async->prealloc_bufsz);
		if (move_block_from_fifo(dev, s, m, 0))
		if (move_block_from_fifo(dev, s, m))
			return;
		nsamples -= m;
	}

	if (nsamples) {
		if (move_block_from_fifo(dev, s, nsamples, 1))
		if (move_block_from_fifo(dev, s, nsamples))
			return;
	}