2
0
mirror of https://github.com/edk2-porting/linux-next.git synced 2024-12-26 22:24:09 +08:00

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: 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:
H Hartley Sweeten 2015-01-20 14:53:24 -07:00 committed by Greg Kroah-Hartman
parent d61b786ab0
commit f01663ec35

View File

@ -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;
}