staging: comedi: dt282x: fix dt282x_ao_insn_read()
The comedi core expects the (*insn_read) functions to return 'insn->n' samples. Fix this function to work like the core expects. For aesthetics, rename the private data 'ao' member to clarify its use. Also, remove the unnecessary comment. 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:
parent
de91bb9725
commit
9504be8a1b
1 changed files with 9 additions and 11 deletions
|
|
@ -326,7 +326,7 @@ struct dt282x_private {
|
|||
|
||||
const struct comedi_lrange *darangelist[2];
|
||||
|
||||
unsigned short ao[2];
|
||||
unsigned short ao_readback[2];
|
||||
|
||||
int dacsr; /* software copies of registers */
|
||||
int adcsr;
|
||||
|
|
@ -828,21 +828,19 @@ static int dt282x_ai_cancel(struct comedi_device *dev,
|
|||
return 0;
|
||||
}
|
||||
|
||||
/*
|
||||
* Analog output routine. Selects single channel conversion,
|
||||
* selects correct channel, converts from 2's compliment to
|
||||
* offset binary if necessary, loads the data into the DAC
|
||||
* data register, and performs the conversion.
|
||||
*/
|
||||
static int dt282x_ao_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 dt282x_private *devpriv = dev->private;
|
||||
unsigned int chan = CR_CHAN(insn->chanspec);
|
||||
int i;
|
||||
|
||||
data[0] = devpriv->ao[CR_CHAN(insn->chanspec)];
|
||||
for (i = 0; i < insn->n; i++)
|
||||
data[i] = devpriv->ao_readback[chan];
|
||||
|
||||
return 1;
|
||||
return insn->n;
|
||||
}
|
||||
|
||||
static int dt282x_ao_insn_write(struct comedi_device *dev,
|
||||
|
|
@ -869,7 +867,7 @@ static int dt282x_ao_insn_write(struct comedi_device *dev,
|
|||
|
||||
for (i = 0; i < insn->n; i++) {
|
||||
val = data[i];
|
||||
devpriv->ao[chan] = val;
|
||||
devpriv->ao_readback[chan] = val;
|
||||
|
||||
if (munge)
|
||||
val = comedi_offset_munge(s, val);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue