Commit 83dcfee0 authored by H Hartley Sweeten's avatar H Hartley Sweeten Committed by Greg Kroah-Hartman

staging: comedi: adl_pci9111: cleanup pci9111_do_insn_bits()

Remove the unnecessary comments.

Cleanup the function to follow the comedi standard for digital
outputs. The 'mask' does not need to be checked, the comedi core
will make sure that it is valid based on the subdevice data.
The outputs only need to be updated if the 'mask' indicates
something is changing, otherwise we just need to return the
current "state" of the outputs.
Signed-off-by: default avatarH Hartley Sweeten <hsweeten@visionengravers.com>
Cc: Ian Abbott <abbotti@mev.co.uk>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent bfa6d3b8
......@@ -108,7 +108,6 @@ a multiple of chanlist_len*convert_arg.
#define PCI9111_AO_RESOLUTION_MASK 0x0FFF
#define PCI9111_DI_CHANNEL_NBR 16
#define PCI9111_DO_CHANNEL_NBR 16
#define PCI9111_DO_MASK 0xFFFF
#define PCI9111_RANGE_SETTING_DELAY 10
#define PCI9111_AI_INSTANT_READ_UDELAY_US 2
......@@ -1088,28 +1087,22 @@ static int pci9111_di_insn_bits(struct comedi_device *dev,
return insn->n;
}
/* Digital outputs */
static int pci9111_do_insn_bits(struct comedi_device *dev,
struct comedi_subdevice *s,
struct comedi_insn *insn, unsigned int *data)
struct comedi_insn *insn,
unsigned int *data)
{
unsigned int bits;
unsigned int mask = data[0];
unsigned int bits = data[1];
/* Only set bits that have been masked */
/* data[0] = mask */
/* data[1] = bit state */
if (mask) {
s->state &= ~mask;
s->state |= (bits & mask);
data[0] &= PCI9111_DO_MASK;
bits = s->state;
bits &= ~data[0];
bits |= data[0] & data[1];
s->state = bits;
outw(bits, dev->iobase + PCI9111_DIO_REG);
outw(s->state, dev->iobase + PCI9111_DIO_REG);
}
data[1] = bits;
data[1] = s->state;
return insn->n;
}
......
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