]> git.baikalelectronics.ru Git - kernel.git/commit
staging: comedi: dt2814: Don't wait for conversion in interrupt handler
authorIan Abbott <abbotti@mev.co.uk>
Mon, 1 Mar 2021 16:57:53 +0000 (16:57 +0000)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 10 Mar 2021 08:25:31 +0000 (09:25 +0100)
commit531dfe1d2dbca4cba71207e6eafcb0ba129c2e95
tree6c12698d20062426a6eac1ea7ec28882c2f42ef9
parent27c0a89417c7f3aaa795734971478c35fccf7925
staging: comedi: dt2814: Don't wait for conversion in interrupt handler

When the interrupt handler decides the final sample has been acquired,
it turns off the timer enable (ENB) bit in the Command register.  That
triggers another A/D conversion.  The interrupt handler currently waits
for that to finish and then reads the resulting, unwanted sample.  Since
the functions for handling Comedi read instructions and for setting up
asynchronous commands now call `dt2814_ai_clear()` to wait for and
discard any spurious A/D conversion, let's remove that code from the
interrupt handler.

Signed-off-by: Ian Abbott <abbotti@mev.co.uk>
Link: https://lore.kernel.org/r/20210301165757.243065-3-abbotti@mev.co.uk
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/comedi/drivers/dt2814.c