This patch sets the COMEDI_CB_BLOCK event in the interrupt routines of
the comedi_parport and amplc_pc236 drivers, as whatever is monitoring
the interrupts probably wants to know about them as soon as possible!
return IRQ_RETVAL(retval);
comedi_buf_put(s->async,0);
- s->async->events |= COMEDI_CB_EOS;
+ s->async->events |= COMEDI_CB_BLOCK | COMEDI_CB_EOS;
comedi_event(dev,s,s->async->events);
return IRQ_RETVAL(retval);
}
comedi_buf_put( s->async, 0 );
- s->async->events |= COMEDI_CB_EOS;
+ s->async->events |= COMEDI_CB_BLOCK | COMEDI_CB_EOS;
comedi_event(dev,s,s->async->events);
return IRQ_HANDLED;