summaryrefslogtreecommitdiff
path: root/sys/dev
diff options
context:
space:
mode:
authorJason Downs <downsj@cvs.openbsd.org>1999-01-11 04:15:19 +0000
committerJason Downs <downsj@cvs.openbsd.org>1999-01-11 04:15:19 +0000
commit985875a6b8449302e337ef93d3305c5cf1a64241 (patch)
tree40f1e16777e098431c3e871cf26e54489994657d /sys/dev
parent8df9bc88dbc20da200e45d56c2dcb89e47983fb9 (diff)
Make attachment sane.
Diffstat (limited to 'sys/dev')
-rw-r--r--sys/dev/isa/sb_isapnp.c12
1 files changed, 2 insertions, 10 deletions
diff --git a/sys/dev/isa/sb_isapnp.c b/sys/dev/isa/sb_isapnp.c
index 8f332e944f5..2f8b41095ec 100644
--- a/sys/dev/isa/sb_isapnp.c
+++ b/sys/dev/isa/sb_isapnp.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: sb_isapnp.c,v 1.9 1999/01/11 03:03:42 downsj Exp $ */
+/* $OpenBSD: sb_isapnp.c,v 1.10 1999/01/11 04:15:18 downsj Exp $ */
/* $NetBSD: sb_isa.c,v 1.3 1997/03/20 11:03:11 mycroft Exp $ */
/*
@@ -115,19 +115,11 @@ sb_isapnp_attach(parent, self, aux)
sc->sc_mpu_sc.iobase = 0;
#endif
- /*
- * isapnp is a child if isa, and we need isa for the dma
- * routines
- */
- sc->sc_isa = parent->dv_parent;
-
if (!sbmatch(sc)) {
printf("%s: sbmatch failed\n", sc->sc_dev.dv_xname);
return;
}
- printf("%s: %s %s", sc->sc_dev.dv_xname, ia->ipa_devident,
- ia->ipa_devclass);
-
+ sc->sc_isa = parent->dv_parent;
sbattach(sc);
}