staging: comedi: dt282x: fix dt282x_ao_insn_write()

The (*insn_write) functions are expected to write 'insn->n' samples to the
hardware. Fix this function so it works like the comedi core expects.

The comedi core sanity checks that the samples are within the 'maxdata' range
of the subdevice before calling the (*insn_write) so this function does not
need to mask each sample by 's->maxdata'.

Also, the wrong '*2scomp' flag in the private data was being checked to see
if the sample needs to be munged before being written. Fix this.

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 2014-06-20 13:12:39 -07:00 committed by Greg Kroah-Hartman
parent 58c8c47fda
commit 804ee9ac04

View File

@ -882,37 +882,42 @@ static int dt282x_ao_insn_read(struct comedi_device *dev,
static int dt282x_ao_insn_write(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 d;
unsigned int chan;
chan = CR_CHAN(insn->chanspec);
d = data[0];
d &= s->maxdata;
devpriv->ao[chan] = d;
unsigned int chan = CR_CHAN(insn->chanspec);
bool munge = false;
unsigned int val;
int i;
devpriv->dacsr |= DT2821_SSEL;
if (chan) {
/* select channel */
devpriv->dacsr |= DT2821_YSEL;
if (devpriv->da0_2scomp)
d = comedi_offset_munge(s, d);
if (devpriv->da1_2scomp)
munge = true;
} else {
devpriv->dacsr &= ~DT2821_YSEL;
if (devpriv->da1_2scomp)
d = comedi_offset_munge(s, d);
if (devpriv->da0_2scomp)
munge = true;
}
for (i = 0; i < insn->n; i++) {
val = data[i];
devpriv->ao[chan] = val;
if (munge)
val = comedi_offset_munge(s, val);
outw(devpriv->dacsr, dev->iobase + DT2821_DACSR);
outw(d, dev->iobase + DT2821_DADAT);
outw(val, dev->iobase + DT2821_DADAT);
outw(devpriv->supcsr | DT2821_DACON, dev->iobase + DT2821_SUPCSR);
outw(devpriv->supcsr | DT2821_DACON,
dev->iobase + DT2821_SUPCSR);
}
return 1;
return insn->n;
}
static int dt282x_ao_cmdtest(struct comedi_device *dev,