diff options
author | H Hartley Sweeten <hsweeten@visionengravers.com> | 2013-08-30 14:08:50 -0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2013-12-20 10:45:11 -0500 |
commit | 4d72984a5893a40e0990080d6036646a688cd493 (patch) | |
tree | 5f1840ade54b529a029519299b494b30a6dcdb72 | |
parent | 442ae1bbb73a9ce8bc8743b679fb63cc5cf04dad (diff) |
staging: comedi: ssv_dnp: use comedi_dio_update_state()
commit f6b316bcd8c421acd6fa5a6e18b4c846ecb9d965 upstream.
Use comedi_dio_update_state() to handle the boilerplate code to update
the subdevice s->state.
Also, fix a bug where the state of the channels is returned in data[0].
The comedi core expects it to be returned in data[1].
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>
-rw-r--r-- | drivers/staging/comedi/drivers/ssv_dnp.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/staging/comedi/drivers/ssv_dnp.c b/drivers/staging/comedi/drivers/ssv_dnp.c index a76df092a57b..8c84dc0cfe07 100644 --- a/drivers/staging/comedi/drivers/ssv_dnp.c +++ b/drivers/staging/comedi/drivers/ssv_dnp.c | |||
@@ -87,11 +87,11 @@ static int dnp_dio_insn_bits(struct comedi_device *dev, | |||
87 | 87 | ||
88 | /* on return, data[1] contains the value of the digital input lines. */ | 88 | /* on return, data[1] contains the value of the digital input lines. */ |
89 | outb(PADR, CSCIR); | 89 | outb(PADR, CSCIR); |
90 | data[0] = inb(CSCDR); | 90 | data[1] = inb(CSCDR); |
91 | outb(PBDR, CSCIR); | 91 | outb(PBDR, CSCIR); |
92 | data[0] += inb(CSCDR) << 8; | 92 | data[1] += inb(CSCDR) << 8; |
93 | outb(PCDR, CSCIR); | 93 | outb(PCDR, CSCIR); |
94 | data[0] += ((inb(CSCDR) & 0xF0) << 12); | 94 | data[1] += ((inb(CSCDR) & 0xF0) << 12); |
95 | 95 | ||
96 | return insn->n; | 96 | return insn->n; |
97 | 97 | ||