staging: comedi: addi_apci_3xxx: use comedi_handle_events()
authorH Hartley Sweeten <hsweeten@visionengravers.com>
Thu, 18 Sep 2014 18:35:21 +0000 (11:35 -0700)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 20 Oct 2014 02:29:22 +0000 (10:29 +0800)
Use comedi_handle_events() to automatically (*cancel) the async command
for an end-of-acquisition or if an error/overflow occurs.

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>
drivers/staging/comedi/drivers/addi_apci_3xxx.c

index a296bd5b2c0c10b9a321339d10c97ad82d73251c..fe9ac2d7269427bdd1712ca0143359e3eceb52e0 100644 (file)
@@ -374,7 +374,7 @@ static irqreturn_t apci3xxx_irq_handler(int irq, void *d)
                comedi_buf_put(s, val);
 
                s->async->events |= COMEDI_CB_EOA;
-               comedi_event(dev, s);
+               comedi_handle_events(dev, s);
 
                return IRQ_HANDLED;
        }