/* Macros to access registers */
 
-/* Interrupt status */
-#define RtdInterruptStatus(dev) \
-       readw(devpriv->las0+LAS0_IT)
-
 /* Interrupt mask */
 #define RtdInterruptMask(dev, v) \
        writew((devpriv->intMask = (v)), devpriv->las0+LAS0_IT)
        /* Fall through and check for other interrupt sources */
 #endif /* USE_DMA */
 
-       status = RtdInterruptStatus(dev);
+       status = readw(devpriv->las0 + LAS0_IT);
        /* if interrupt was not caused by our board, or handled above */
        if (0 == status)
                return IRQ_HANDLED;
        comedi_event(dev, s);
 
        /* clear the interrupt */
-       status = RtdInterruptStatus(dev);
+       status = readw(devpriv->las0 + LAS0_IT);
        RtdInterruptClearMask(dev, status);
        RtdInterruptClear(dev);
 
                devpriv->flags &= ~DMA0_ACTIVE;
        }
 #endif /* USE_DMA */
-       status = RtdInterruptStatus(dev);
+       status = readw(devpriv->las0 + LAS0_IT);
        DPRINTK
            ("rtd520: Acquisition canceled. %ld ints, intStat=%x, overStat=%x\n",
             devpriv->intCount, status,