Commit 85a2f34f authored by J. Ali Harlow's avatar J. Ali Harlow Committed by Greg Kroah-Hartman

comedi vmk80xx: Digitial I/O should have a maxdata of 1

Digitial input and output sub-devices were reporting a maxdata of
0x1F and 0xFF respectively. They should both be 1.
Signed-off-by: default avatarJ. Ali Harlow <ali@avrc.city.ac.uk>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
parent 587e500c
......@@ -1138,7 +1138,7 @@ static int vmk80xx_attach(struct comedi_device *cdev,
s->type = COMEDI_SUBD_DI;
s->subdev_flags = SDF_READABLE | SDF_GROUND;
s->n_chan = dev->board.di_chans;
s->maxdata = (1 << dev->board.di_bits) - 1;
s->maxdata = 1;
s->insn_read = vmk80xx_di_rinsn;
/* Digital output subdevice */
......@@ -1146,7 +1146,7 @@ static int vmk80xx_attach(struct comedi_device *cdev,
s->type = COMEDI_SUBD_DO;
s->subdev_flags = SDF_WRITEABLE | SDF_GROUND;
s->n_chan = dev->board.do_chans;
s->maxdata = (1 << dev->board.do_bits) - 1;
s->maxdata = 1;
s->insn_write = vmk80xx_do_winsn;
if (dev->board.model == VMK8061_MODEL) {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment