diff options
author | 2005-07-27 09:39:21 +0000 | |
---|---|---|
committer | 2005-07-27 09:39:21 +0000 | |
commit | 3472170fa6da0a8ccd232c91f9159a67cf169ea1 (patch) | |
tree | d64aa08cbffd2211ed43946a0f3a289ad338d0a2 | |
parent | CELCIUS to CELSIUS in macros as pointed out by jolan and jmc. jmc also says (diff) | |
download | wireguard-openbsd-3472170fa6da0a8ccd232c91f9159a67cf169ea1.tar.xz wireguard-openbsd-3472170fa6da0a8ccd232c91f9159a67cf169ea1.zip |
Back out 1.16. There are cases where we can recover from OF_mapintr
failure.
ok henning@
-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) { |