staging: comedi: ni_mio_common: fix the (*insn_read) for the freq_out counter
authorH Hartley Sweeten <hsweeten@visionengravers.com>
Wed, 28 May 2014 23:26:54 +0000 (16:26 -0700)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 18 Jun 2014 21:33:53 +0000 (14:33 -0700)
The (*insn_read) functions are supposed to "read" insn->n data values and
return the number of values read.

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/ni_mio_common.c

index 69be8ea..68cd92b 100644 (file)
@@ -3878,12 +3878,17 @@ static unsigned ni_gpct_read_register(struct ni_gpct *counter,
 
 static int ni_freq_out_insn_read(struct comedi_device *dev,
                                 struct comedi_subdevice *s,
-                                struct comedi_insn *insn, unsigned int *data)
+                                struct comedi_insn *insn,
+                                unsigned int *data)
 {
        struct ni_private *devpriv = dev->private;
+       unsigned int val = devpriv->clock_and_fout & FOUT_Divider_mask;
+       int i;
 
-       data[0] = devpriv->clock_and_fout & FOUT_Divider_mask;
-       return 1;
+       for (i = 0; i < insn->n; i++)
+               data[i] = val;
+
+       return insn->n;
 }
 
 static int ni_freq_out_insn_write(struct comedi_device *dev,