Skip to content

Commit

Permalink
staging: comedi: dt282x: use comedi_handle_events()
Browse files Browse the repository at this point in the history
cfc_handle_events() is just a wrapper around comedi_handle_events().

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>
  • Loading branch information
H Hartley Sweeten authored and Greg Kroah-Hartman committed Oct 20, 2014
1 parent fe43b8f commit 4f6f009
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions drivers/staging/comedi/drivers/dt282x.c
Original file line number Diff line number Diff line change
Expand Up @@ -579,8 +579,8 @@ static irqreturn_t dt282x_interrupt(int irq, void *d)
handled = 1;
}
#endif
cfc_handle_events(dev, s);
cfc_handle_events(dev, s_ao);
comedi_handle_events(dev, s);
comedi_handle_events(dev, s_ao);

return IRQ_RETVAL(handled);
}
Expand Down

0 comments on commit 4f6f009

Please sign in to comment.