From fa769b0e97445ecd8209d58832c3569289013919 Mon Sep 17 00:00:00 2001 From: mycroft Date: Fri, 4 Nov 1994 02:55:32 +0000 Subject: [PATCH] Set ia_irq correctly. --- sys/arch/i386/isa/isa.c | 8 +++++--- sys/dev/isa/isa.c | 8 +++++--- 2 files changed, 10 insertions(+), 6 deletions(-) diff --git a/sys/arch/i386/isa/isa.c b/sys/arch/i386/isa/isa.c index 6c2971565d54..d72191da13f6 100644 --- a/sys/arch/i386/isa/isa.c +++ b/sys/arch/i386/isa/isa.c @@ -1,4 +1,4 @@ -/* $NetBSD: isa.c,v 1.61 1994/11/04 00:53:06 mycroft Exp $ */ +/* $NetBSD: isa.c,v 1.62 1994/11/04 02:55:32 mycroft Exp $ */ /*- * Copyright (c) 1993, 1994 Charles Hannum. All rights reserved. @@ -96,7 +96,7 @@ isasubmatch(parent, match, aux) ia.ia_iosize = 0x666; ia.ia_maddr = cf->cf_loc[2] - 0xa0000 + atdevbase; ia.ia_msize = cf->cf_loc[3]; - ia.ia_irq = cf->cf_loc[4]; + ia.ia_irq = (cf->cf_loc[4] == -1) ? IRQUNK : (1 << cf->cf_loc[4]); ia.ia_drq = cf->cf_loc[5]; if ((*cf->cf_driver->cd_match)(parent, match, &ia) <= 0) { @@ -121,5 +121,7 @@ isaattach(parent, self, aux) void *aux; { - while (config_search(isasubmatch, self, NULL)); + printf("\n"); + + while (config_search(isasubmatch, self, NULL) != NULL); } diff --git a/sys/dev/isa/isa.c b/sys/dev/isa/isa.c index 6c2971565d54..d72191da13f6 100644 --- a/sys/dev/isa/isa.c +++ b/sys/dev/isa/isa.c @@ -1,4 +1,4 @@ -/* $NetBSD: isa.c,v 1.61 1994/11/04 00:53:06 mycroft Exp $ */ +/* $NetBSD: isa.c,v 1.62 1994/11/04 02:55:32 mycroft Exp $ */ /*- * Copyright (c) 1993, 1994 Charles Hannum. All rights reserved. @@ -96,7 +96,7 @@ isasubmatch(parent, match, aux) ia.ia_iosize = 0x666; ia.ia_maddr = cf->cf_loc[2] - 0xa0000 + atdevbase; ia.ia_msize = cf->cf_loc[3]; - ia.ia_irq = cf->cf_loc[4]; + ia.ia_irq = (cf->cf_loc[4] == -1) ? IRQUNK : (1 << cf->cf_loc[4]); ia.ia_drq = cf->cf_loc[5]; if ((*cf->cf_driver->cd_match)(parent, match, &ia) <= 0) { @@ -121,5 +121,7 @@ isaattach(parent, self, aux) void *aux; { - while (config_search(isasubmatch, self, NULL)); + printf("\n"); + + while (config_search(isasubmatch, self, NULL) != NULL); }