]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
staging: comedi: ni_mio_common: always lock in ni_ai_poll()
authorIan Abbott <abbotti@mev.co.uk>
Mon, 24 Sep 2012 15:27:59 +0000 (16:27 +0100)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 26 Sep 2012 17:45:38 +0000 (10:45 -0700)
`ni_ai_poll()` currently acquires (and later releases) the comedi
device's spin-lock iff `in_interrupt()` returns 0.  However, it is only
called during processing of a `COMEDI_POLL` ioctl so `in_interrupt()`
will always return 0 in this case.  Remove this test and acquire/release
the spin-lock unconditionally.  This eliminates a sparse warning about
different lock contexts for basic block.

Signed-off-by: Ian Abbott <abbotti@mev.co.uk>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/comedi/drivers/ni_mio_common.c

index 87995da00f61ef1754176a86bd355f4db9c2e0d5..4bbb9798af7e3e20877719c99699120124d0c7d1 100644 (file)
@@ -1766,20 +1766,18 @@ static int ni_ai_reset(struct comedi_device *dev, struct comedi_subdevice *s)
 
 static int ni_ai_poll(struct comedi_device *dev, struct comedi_subdevice *s)
 {
-       unsigned long flags = 0;
+       unsigned long flags;
        int count;
 
        /*  lock to avoid race with interrupt handler */
-       if (in_interrupt() == 0)
-               spin_lock_irqsave(&dev->spinlock, flags);
+       spin_lock_irqsave(&dev->spinlock, flags);
 #ifndef PCIDMA
        ni_handle_fifo_dregs(dev);
 #else
        ni_sync_ai_dma(dev);
 #endif
        count = s->async->buf_write_count - s->async->buf_read_count;
-       if (in_interrupt() == 0)
-               spin_unlock_irqrestore(&dev->spinlock, flags);
+       spin_unlock_irqrestore(&dev->spinlock, flags);
 
        return count;
 }