diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 1999-02-07 00:54:47 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 1999-02-07 00:54:47 +0000 |
commit | a122fd1dfca2cc6b077c8396ffa4f43e9f5a8b50 (patch) | |
tree | dc12727651f7bafc3f823c4f208b02d148c9a9e4 /sys/dev | |
parent | 773bc337d8ee0a565b5e8a3ca5a797ae83bf3144 (diff) |
Break out of loop in isa_intr_check() if we know what IRQ we want but isa_intr_check() says we can't have it.
Diffstat (limited to 'sys/dev')
-rw-r--r-- | sys/dev/isa/isa.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/isa/isa.c b/sys/dev/isa/isa.c index 73dd22b7a8f..b59db02608d 100644 --- a/sys/dev/isa/isa.c +++ b/sys/dev/isa/isa.c @@ -1,4 +1,4 @@ -/* $OpenBSD: isa.c,v 1.35 1998/07/28 13:26:48 csapuntz Exp $ */ +/* $OpenBSD: isa.c,v 1.36 1999/02/07 00:54:46 millert Exp $ */ /* $NetBSD: isa.c,v 1.85 1996/05/14 00:31:04 thorpej Exp $ */ /* @@ -221,7 +221,7 @@ isascan(parent, match) cf->cf_driver->cd_name, cf->cf_unit, ia2.ia_irq); ia2 = ia; - continue; + break; } #endif |