diff options
author | Michael Shalayeff <mickey@cvs.openbsd.org> | 2005-10-17 19:17:25 +0000 |
---|---|---|
committer | Michael Shalayeff <mickey@cvs.openbsd.org> | 2005-10-17 19:17:25 +0000 |
commit | ca93f248b6ba7559bed213bde7989c66547ca8f8 (patch) | |
tree | 94b1e5e9bcb0be6da990c53a52e72ed19ad95523 /sys/arch/i386/pci | |
parent | fc91c16f0414890757292add34af8bee286c868f (diff) |
don't say no more if there is no driver for icu; lessen noise
Diffstat (limited to 'sys/arch/i386/pci')
-rw-r--r-- | sys/arch/i386/pci/pci_intr_fixup.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/sys/arch/i386/pci/pci_intr_fixup.c b/sys/arch/i386/pci/pci_intr_fixup.c index fa429d84150..82716b98715 100644 --- a/sys/arch/i386/pci/pci_intr_fixup.c +++ b/sys/arch/i386/pci/pci_intr_fixup.c @@ -1,4 +1,4 @@ -/* $OpenBSD: pci_intr_fixup.c,v 1.40 2005/10/15 11:42:56 brad Exp $ */ +/* $OpenBSD: pci_intr_fixup.c,v 1.41 2005/10/17 19:17:24 mickey Exp $ */ /* $NetBSD: pci_intr_fixup.c,v 1.10 2000/08/10 21:18:27 soda Exp $ */ /* @@ -812,9 +812,8 @@ pci_intr_fixup(sc, pc, iot) return (-1); /* non-fatal */ if (pciintr_guess_irq()) return (-1); /* non-fatal */ - return (0); /* success! */ - } else - return (-1); /* non-fatal */ + } + return (0); } else { char devinfo[256]; |