diff options
author | Constantine Sapuntzakis <csapuntz@cvs.openbsd.org> | 2001-06-25 21:49:44 +0000 |
---|---|---|
committer | Constantine Sapuntzakis <csapuntz@cvs.openbsd.org> | 2001-06-25 21:49:44 +0000 |
commit | e8d7645b18028a41885bf639582894bf441c772a (patch) | |
tree | d130f2641eb6323b9f10f446441e0a672deb7fe9 /sys/arch/alpha/pci/pciide_machdep.c | |
parent | 827fd424d109cad96aed555389352c10ea854184 (diff) |
Add disestablish for pciide on Alpha
Diffstat (limited to 'sys/arch/alpha/pci/pciide_machdep.c')
-rw-r--r-- | sys/arch/alpha/pci/pciide_machdep.c | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/sys/arch/alpha/pci/pciide_machdep.c b/sys/arch/alpha/pci/pciide_machdep.c index dc6b5b61f8d..deaf651179f 100644 --- a/sys/arch/alpha/pci/pciide_machdep.c +++ b/sys/arch/alpha/pci/pciide_machdep.c @@ -1,4 +1,4 @@ -/* $OpenBSD: pciide_machdep.c,v 1.1 1998/07/01 02:42:40 angelos Exp $ */ +/* $OpenBSD: pciide_machdep.c,v 1.2 2001/06/25 21:49:43 csapuntz Exp $ */ /* $NetBSD: pciide_machdep.c,v 1.2 1998/04/18 01:09:20 thorpej Exp $ */ /* @@ -68,3 +68,11 @@ pciide_machdep_compat_intr_establish(dev, pa, chan, func, arg) return (alpha_pciide_compat_intr_establish(pc, dev, pa, chan, func, arg)); } + +void +pciide_machdep_compat_intr_disestablish(pc, cookie) + pci_chipset_tag_t pc; + void *cookie; +{ + return (alpha_pciide_compat_intr_disestablish(pc, cookie)); +} |