summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorfgsch <fgsch@openbsd.org>1999-01-01 08:05:46 +0000
committerfgsch <fgsch@openbsd.org>1999-01-01 08:05:46 +0000
commitf854b60039e05d9ef90338827189fd6ffa029adb (patch)
tree612c996465ce53208c26dfc719c06a3ffcf24ca2
parentAdd ${PIPE} in sys.mk so we do no need to add all over the places; evanc@concer.to (diff)
downloadwireguard-openbsd-f854b60039e05d9ef90338827189fd6ffa029adb.tar.xz
wireguard-openbsd-f854b60039e05d9ef90338827189fd6ffa029adb.zip
Don't print irq twice if it's defined in the config-file.
-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);