mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-02-03 10:24:01 -05:00
staging: comedi: addi_apci_3120: use correct iobase to read board register
The board registers are accessed using the bse address devpriv->iobase not devpriv->i_IobaseAmcc. Fix a read in apci3120_interrupt() that is using the wrong base address. 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>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
0defecbfd2
commit
758cdd4a17
@@ -1399,7 +1399,7 @@ static irqreturn_t apci3120_interrupt(int irq, void *d)
|
||||
devpriv->b_ExttrigEnable = APCI3120_DISABLE;
|
||||
}
|
||||
/* clear the timer 2 interrupt */
|
||||
inb(devpriv->i_IobaseAmcc + APCI3120_TIMER_STATUS_REGISTER);
|
||||
inb(devpriv->iobase + APCI3120_TIMER_STATUS_REGISTER);
|
||||
|
||||
if (int_amcc & MASTER_ABORT_INT)
|
||||
dev_err(dev->class_dev, "AMCC IRQ - MASTER DMA ABORT!\n");
|
||||
|
||||
Reference in New Issue
Block a user