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

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
......@@ -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;
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment