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

staging: comedi: pcmmio: use comedi_handle_events()

Use comedi_handle_events() to automatically (*cancel) the async command
for an end-of-acquisition or if an error/overflow occurs.

Also, comedi_handle_events() does nothing if no events are set so the
local variable 'oldevents' can be removed.
Signed-off-by: default avatarH Hartley Sweeten <hsweeten@visionengravers.com>
Reviewed-by: default avatarIan Abbott <abbotti@mev.co.uk>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 421c600d
...@@ -337,7 +337,6 @@ static void pcmmio_handle_dio_intr(struct comedi_device *dev, ...@@ -337,7 +337,6 @@ static void pcmmio_handle_dio_intr(struct comedi_device *dev,
{ {
struct pcmmio_private *devpriv = dev->private; struct pcmmio_private *devpriv = dev->private;
struct comedi_cmd *cmd = &s->async->cmd; struct comedi_cmd *cmd = &s->async->cmd;
unsigned int oldevents = s->async->events;
unsigned int val = 0; unsigned int val = 0;
unsigned long flags; unsigned long flags;
int i; int i;
...@@ -359,29 +358,20 @@ static void pcmmio_handle_dio_intr(struct comedi_device *dev, ...@@ -359,29 +358,20 @@ static void pcmmio_handle_dio_intr(struct comedi_device *dev,
/* Write the scan to the buffer. */ /* Write the scan to the buffer. */
if (comedi_buf_put(s, val) && if (comedi_buf_put(s, val) &&
comedi_buf_put(s, val >> 16)) { comedi_buf_put(s, val >> 16))
s->async->events |= (COMEDI_CB_BLOCK | COMEDI_CB_EOS); s->async->events |= (COMEDI_CB_BLOCK | COMEDI_CB_EOS);
} else {
/* Overflow! Stop acquisition!! */
/* TODO: STOP_ACQUISITION_CALL_HERE!! */
pcmmio_stop_intr(dev, s);
}
/* Check for end of acquisition. */ /* Check for end of acquisition. */
if (cmd->stop_src == TRIG_COUNT && devpriv->stop_count > 0) { if (cmd->stop_src == TRIG_COUNT && devpriv->stop_count > 0) {
devpriv->stop_count--; devpriv->stop_count--;
if (devpriv->stop_count == 0) { if (devpriv->stop_count == 0)
s->async->events |= COMEDI_CB_EOA; s->async->events |= COMEDI_CB_EOA;
/* TODO: STOP_ACQUISITION_CALL_HERE!! */
pcmmio_stop_intr(dev, s);
}
} }
done: done:
spin_unlock_irqrestore(&devpriv->spinlock, flags); spin_unlock_irqrestore(&devpriv->spinlock, flags);
if (oldevents != s->async->events) comedi_handle_events(dev, s);
comedi_event(dev, s);
} }
static irqreturn_t interrupt_pcmmio(int irq, void *d) static irqreturn_t interrupt_pcmmio(int irq, void *d)
......
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