From 39c93ac321d67461bb4403867148abf5ba2820f2 Mon Sep 17 00:00:00 2001 From: tsutsui Date: Fri, 21 Apr 2006 17:16:17 +0000 Subject: [PATCH] Oops, fix botch in previous. --- sys/arch/cobalt/pci/pcib.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/sys/arch/cobalt/pci/pcib.c b/sys/arch/cobalt/pci/pcib.c index 19f82f3b2341..109da0dfdcd7 100644 --- a/sys/arch/cobalt/pci/pcib.c +++ b/sys/arch/cobalt/pci/pcib.c @@ -1,4 +1,4 @@ -/* $NetBSD: pcib.c,v 1.15 2006/04/21 17:14:08 tsutsui Exp $ */ +/* $NetBSD: pcib.c,v 1.16 2006/04/21 17:16:17 tsutsui Exp $ */ /* * Copyright (c) 2000 Soren S. Jorvang. All rights reserved. @@ -26,7 +26,7 @@ */ #include -__KERNEL_RCSID(0, "$NetBSD: pcib.c,v 1.15 2006/04/21 17:14:08 tsutsui Exp $"); +__KERNEL_RCSID(0, "$NetBSD: pcib.c,v 1.16 2006/04/21 17:16:17 tsutsui Exp $"); #include #include @@ -134,7 +134,7 @@ icu_intr(void *arg) for (i = 0; i < IO_ICUSIZE; i++) { ih = &icu[i]; if (ih->ih_func == NULL) - return 0; + break; if ((*ih->ih_func)(ih->ih_arg)) { handled = 1;