From 321f03c8eddd8cf5aa81836ff1932a74156d30cb Mon Sep 17 00:00:00 2001 From: dg Date: Wed, 5 Feb 1997 22:19:18 +0000 Subject: Fixed missing ioport offset from the reading/updating of the PLX interrupt control/status register. Submitted by: Brian McGovern --- sys/pci/cy_pci.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'sys/pci/cy_pci.c') diff --git a/sys/pci/cy_pci.c b/sys/pci/cy_pci.c index 67aafcd..a29c32a 100644 --- a/sys/pci/cy_pci.c +++ b/sys/pci/cy_pci.c @@ -120,7 +120,7 @@ cy_attach(config_id, unit) * Enable the "local" interrupt input to generate a * PCI interrupt. */ - outw(ioport + CY_PLX_ICS, inw(CY_PLX_ICS) | + outw(ioport + CY_PLX_ICS, inw(ioport + CY_PLX_ICS) | CY_PLX_ICS_IENABLE | CY_PLX_ICS_LOCAL_IENABLE); return; -- cgit v1.1