diff options
author | Ted Unangst <tedu@cvs.openbsd.org> | 2008-12-06 05:05:47 +0000 |
---|---|---|
committer | Ted Unangst <tedu@cvs.openbsd.org> | 2008-12-06 05:05:47 +0000 |
commit | f09a245d003d97d33aca02a1c2f07681a98632d9 (patch) | |
tree | 506cbdb238baf2e4d1655eb855b399f990d0b47e /sys/arch | |
parent | 3d32c95c745d0c771a655577a6819350d8de48a1 (diff) |
some more trouble where i failed to account for oga's diff
Diffstat (limited to 'sys/arch')
-rw-r--r-- | sys/arch/i386/pci/pci_machdep.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/arch/i386/pci/pci_machdep.h b/sys/arch/i386/pci/pci_machdep.h index 2ca513de801..85037b66267 100644 --- a/sys/arch/i386/pci/pci_machdep.h +++ b/sys/arch/i386/pci/pci_machdep.h @@ -1,4 +1,4 @@ -/* $OpenBSD: pci_machdep.h,v 1.12 2008/12/03 15:46:07 oga Exp $ */ +/* $OpenBSD: pci_machdep.h,v 1.13 2008/12/06 05:05:46 tedu Exp $ */ /* $NetBSD: pci_machdep.h,v 1.7 1997/06/06 23:29:18 thorpej Exp $ */ /* @@ -94,6 +94,8 @@ int pci_intr_map(struct pci_attach_args *, const char *pci_intr_string(pci_chipset_tag_t, pci_intr_handle_t); void *pci_intr_establish(pci_chipset_tag_t, pci_intr_handle_t, int, int (*)(void *), void *, char *); +#define pci_intr_establish_mpsafe(t,h,l,f,a,w) \ + pci_intr_establish(t,h,l,f,a,w) void pci_intr_disestablish(pci_chipset_tag_t, void *); void pci_decompose_tag(pci_chipset_tag_t, pcitag_t, int *, int *, int *); |