diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2004-06-28 01:52:27 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2004-06-28 01:52:27 +0000 |
commit | 9c37e1f32dbe8da7496bb5fe00d00e9d3423541f (patch) | |
tree | 15610a98e1bf6694723cdc62e0747af3ac539908 /sys/arch/amd64/pci/pci_machdep.c | |
parent | ad859de0f075c553882080921983e2565d6ec816 (diff) |
Use new event counter API for interrupt counting on amd64. Based in part
on some changes in the i386 codebase.
Diffstat (limited to 'sys/arch/amd64/pci/pci_machdep.c')
-rw-r--r-- | sys/arch/amd64/pci/pci_machdep.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/amd64/pci/pci_machdep.c b/sys/arch/amd64/pci/pci_machdep.c index e1af0882118..aa29dc115bc 100644 --- a/sys/arch/amd64/pci/pci_machdep.c +++ b/sys/arch/amd64/pci/pci_machdep.c @@ -1,4 +1,4 @@ -/* $OpenBSD: pci_machdep.c,v 1.2 2004/06/25 11:03:28 art Exp $ */ +/* $OpenBSD: pci_machdep.c,v 1.3 2004/06/28 01:52:26 deraadt Exp $ */ /* $NetBSD: pci_machdep.c,v 1.3 2003/05/07 21:33:58 fvdl Exp $ */ /*- @@ -635,7 +635,7 @@ pci_intr_establish(pc, ih, level, func, arg, what) } #endif - return intr_establish(irq, pic, pin, IST_LEVEL, level, func, arg); + return intr_establish(irq, pic, pin, IST_LEVEL, level, func, arg, what); } void |