staging: comedi: ni_mio_common: simplify AI LINKC handling
authorH Hartley Sweeten <hsweeten@visionengravers.com>
Thu, 21 Apr 2016 19:04:42 +0000 (12:04 -0700)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Fri, 29 Apr 2016 05:19:49 +0000 (22:19 -0700)
Simplfy the LINKC handing for the analog input dma by moving it into
the main interrupt handler. This function already hold the spinlock
mite_channel_lock so call mite_sync_dma() directly instead of using
the helper function.

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

index 6e76c95..9df1407 100644 (file)
@@ -1295,11 +1295,6 @@ static void handle_a_interrupt(struct comedi_device *dev,
 {
        struct comedi_cmd *cmd = &s->async->cmd;
 
-#ifdef PCIDMA
-       if (ai_mite_status & CHSR_LINKC)
-               ni_sync_ai_dma(dev);
-#endif
-
        /* test for all uncommon interrupt events at the same time */
        if (status & (NISTC_AI_STATUS1_ERR |
                      NISTC_AI_STATUS1_SC_TC | NISTC_AI_STATUS1_START1)) {
@@ -5166,9 +5161,12 @@ static irqreturn_t ni_E_interrupt(int irq, void *d)
                unsigned int m_status;
 
                spin_lock_irqsave(&devpriv->mite_channel_lock, flags_too);
-               if (s_ai && devpriv->ai_mite_chan)
+               if (s_ai && devpriv->ai_mite_chan) {
                        ai_mite_status = mite_ack_linkc(devpriv->ai_mite_chan,
                                                        s_ai);
+                       if (ai_mite_status & CHSR_LINKC)
+                               mite_sync_dma(devpriv->ai_mite_chan, s_ai);
+               }
 
                if (s_ao && devpriv->ao_mite_chan) {
                        m_status = mite_ack_linkc(devpriv->ao_mite_chan, s_ao);