staging: comedi: adv_pci1710: remove 'turn' param from move_block_from_fifo()
authorH Hartley Sweeten <hsweeten@visionengravers.com>
Tue, 20 Jan 2015 21:53:24 +0000 (14:53 -0700)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sun, 25 Jan 2015 11:59:12 +0000 (19:59 +0800)
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>
drivers/staging/comedi/drivers/adv_pci1710.c

index 7ad59ab..0a50053 100644 (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;
        }