]> git.openfabrics.org - ~emulex/infiniband.git/commitdiff
staging: comedi: pcl816: exit interrupt quick when there is nothing to do
authorH Hartley Sweeten <hsweeten@visionengravers.com>
Tue, 4 Mar 2014 18:29:47 +0000 (11:29 -0700)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Fri, 7 Mar 2014 01:06:13 +0000 (17:06 -0800)
If an async ai command is not running or the int816_mode is 0 the
interrupt routine doesn't do anything other than spew some noise and
clear the interrupt request in the hardware.

Because this driver is manually attached, the "premature interrupt"
check in the interrupt handler should never happen. The interrupt is
only hooked up during the attach and it's released during the detach.

Combine these checks so that the interrupt function exits quick if it
has nothing to handle. Remove the noise.

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/pcl816.c

index e77bf9fb2a9a2ca411e8abd7b99575c17ac698dc..632a4a4578d36f75303b9e589fcb9000ceddf1b8 100644 (file)
@@ -344,8 +344,8 @@ static irqreturn_t interrupt_pcl816(int irq, void *d)
        struct comedi_device *dev = d;
        struct pcl816_private *devpriv = dev->private;
 
-       if (!dev->attached) {
-               comedi_error(dev, "premature interrupt");
+       if (!dev->attached || !devpriv->ai_cmd_running ||
+           !devpriv->int816_mode) {
                outb(0, dev->iobase + PCL816_CLRINT);
                return IRQ_HANDLED;
        }
@@ -362,13 +362,8 @@ static irqreturn_t interrupt_pcl816(int irq, void *d)
                return interrupt_pcl816_ai_mode13_dma(irq, d);
        }
 
-       outb(0, dev->iobase + PCL816_CLRINT);   /* clear INT request */
-       if (!devpriv->ai_cmd_running || !devpriv->int816_mode) {
-               comedi_error(dev, "bad IRQ!");
-               return IRQ_NONE;
-       }
-       comedi_error(dev, "IRQ from unknown source!");
-       return IRQ_NONE;
+       outb(0, dev->iobase + PCL816_CLRINT);
+       return IRQ_HANDLED;
 }
 
 static int pcl816_ai_cmdtest(struct comedi_device *dev,