summaryrefslogtreecommitdiff
path: root/sys/dev/isa
diff options
context:
space:
mode:
authorFederico G. Schwindt <fgsch@cvs.openbsd.org>1999-01-01 08:05:47 +0000
committerFederico G. Schwindt <fgsch@cvs.openbsd.org>1999-01-01 08:05:47 +0000
commit518f90001f0b010422520875ebebc539989e21b5 (patch)
tree216be1b47af8906f49e5a8195711f4a63033c3be /sys/dev/isa
parent69b9fcafc2c0143f3a66fb1fc309bf52b40ccd81 (diff)
Don't print irq twice if it's defined in the config-file.
Diffstat (limited to 'sys/dev/isa')
-rw-r--r--sys/dev/isa/i82365_isa.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/sys/dev/isa/i82365_isa.c b/sys/dev/isa/i82365_isa.c
index 4d15eba4a1f..9f89707b019 100644
--- a/sys/dev/isa/i82365_isa.c
+++ b/sys/dev/isa/i82365_isa.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: i82365_isa.c,v 1.4 1998/12/31 12:09:02 fgsch Exp $ */
+/* $OpenBSD: i82365_isa.c,v 1.5 1999/01/01 08:05:46 fgsch Exp $ */
/* $NetBSD: i82365_isa.c,v 1.11 1998/06/09 07:25:00 thorpej Exp $ */
/*
@@ -218,10 +218,9 @@ pcic_isa_attach(parent, self, aux)
return;
found:
sc->irq = pcic_isa_intr_list[i];
+ printf(" irq %d", sc->irq);
}
- printf(": using irq %d", sc->irq);
-
printf("\n");
pcic_attach(sc);