diff options
author | Artur Grabowski <art@cvs.openbsd.org> | 2005-07-27 09:39:22 +0000 |
---|---|---|
committer | Artur Grabowski <art@cvs.openbsd.org> | 2005-07-27 09:39:22 +0000 |
commit | fedab59a2c51222325368d5be1a9c4bd9266a295 (patch) | |
tree | 9602b34711b5d71ea11e34ec3a5d321f788fee0f /sys | |
parent | fe2b0c709bbac9aa3f6be78a78b74dd53467ee85 (diff) |
Back out 1.16. There are cases where we can recover from OF_mapintr
failure.
ok henning@
Diffstat (limited to 'sys')
-rw-r--r-- | sys/arch/sparc64/dev/pci_machdep.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/sys/arch/sparc64/dev/pci_machdep.c b/sys/arch/sparc64/dev/pci_machdep.c index e89fdf2f211..810bc1eb41d 100644 --- a/sys/arch/sparc64/dev/pci_machdep.c +++ b/sys/arch/sparc64/dev/pci_machdep.c @@ -1,4 +1,4 @@ -/* $OpenBSD: pci_machdep.c,v 1.17 2005/07/07 16:40:05 brad Exp $ */ +/* $OpenBSD: pci_machdep.c,v 1.18 2005/07/27 09:39:21 art Exp $ */ /* $NetBSD: pci_machdep.c,v 1.22 2001/07/20 00:07:13 eeh Exp $ */ /* @@ -418,7 +418,6 @@ pci_intr_map(pa, ihp) if (OF_mapintr(node, &interrupts, sizeof(interrupts), sizeof(interrupts)) < 0) { printf("OF_mapintr failed\n"); - return (ENODEV); } /* Try to find an IPL for this type of device. */ if (OF_getprop(node, "device_type", &devtype, sizeof(devtype)) > 0) { |