Skip to content

Commit

Permalink
staging: comedi: addi_apci_1564: use comedi_handle_event() for counters
Browse files Browse the repository at this point in the history
The counter subdevice can generate an interrupt. Currently send_sig() is used
to let the task know when the interrupt occurs. Use the dev->read_subdev and
comedi_handle_events() instead.

Remove the, now unused, 'tsk_current' member from the private data and the
unnecessary include of <linux/sched.h>.

Signed-off-by: H Hartley Sweeten <[email protected]>
Reviewed-by: Ian Abbott <[email protected]>
Signed-off-by: Greg Kroah-Hartman <[email protected]>
  • Loading branch information
bigguiness authored and gregkh committed Jun 18, 2016
1 parent ff9842b commit a23b85a
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 14 deletions.
4 changes: 0 additions & 4 deletions drivers/staging/comedi/drivers/addi-data/hwdrv_apci1564.c
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,6 @@ static int apci1564_timer_insn_config(struct comedi_device *dev,
struct apci1564_private *devpriv = dev->private;
unsigned int ctrl;

devpriv->tsk_current = current;

/* Stop the timer */
ctrl = inl(devpriv->timer + ADDI_TCW_CTRL_REG);
ctrl &= ~(ADDI_TCW_CTRL_GATE | ADDI_TCW_CTRL_TRIG |
Expand Down Expand Up @@ -101,8 +99,6 @@ static int apci1564_counter_insn_config(struct comedi_device *dev,
unsigned long iobase = devpriv->counters + APCI1564_COUNTER(chan);
unsigned int ctrl;

devpriv->tsk_current = current;

/* Stop The Timer */
ctrl = inl(iobase + ADDI_TCW_CTRL_REG);
ctrl &= ~(ADDI_TCW_CTRL_GATE | ADDI_TCW_CTRL_TRIG |
Expand Down
16 changes: 6 additions & 10 deletions drivers/staging/comedi/drivers/addi_apci_1564.c
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@

#include <linux/module.h>
#include <linux/interrupt.h>
#include <linux/sched.h>

#include "../comedi_pci.h"
#include "addi_tcw.h"
Expand Down Expand Up @@ -118,6 +117,7 @@
*/
#define APCI1564_EVENT_COS BIT(31)
#define APCI1564_EVENT_TIMER BIT(30)
#define APCI1564_EVENT_COUNTER(x) BIT(27 + (x)) /* counter 0-2 */
#define APCI1564_EVENT_MASK 0xfff0000f /* all but [19:4] */

struct apci1564_private {
Expand All @@ -127,7 +127,6 @@ struct apci1564_private {
unsigned int mode1; /* rising-edge/high level channels */
unsigned int mode2; /* falling-edge/low level channels */
unsigned int ctrl; /* interrupt mode OR (edge) . AND (level) */
struct task_struct *tsk_current;
};

#include "addi-data/hwdrv_apci1564.c"
Expand Down Expand Up @@ -200,21 +199,18 @@ static irqreturn_t apci1564_interrupt(int irq, void *d)
}

if (devpriv->counters) {
for (chan = 0; chan < 4; chan++) {
for (chan = 0; chan < 3; chan++) {
unsigned long iobase;

iobase = devpriv->counters + APCI1564_COUNTER(chan);

status = inl(iobase + ADDI_TCW_IRQ_REG);
if (status & 0x01) {
/* Disable Counter Interrupt */
if (status & ADDI_TCW_IRQ) {
s->state |= APCI1564_EVENT_COUNTER(chan);

/* clear the interrupt */
ctrl = inl(iobase + ADDI_TCW_CTRL_REG);
outl(0x0, iobase + ADDI_TCW_CTRL_REG);

/* Send a signal to from kernel to user space */
send_sig(SIGIO, devpriv->tsk_current, 0);

/* Enable Counter Interrupt */
outl(ctrl, iobase + ADDI_TCW_CTRL_REG);
}
}
Expand Down

0 comments on commit a23b85a

Please sign in to comment.