summaryrefslogtreecommitdiff
path: root/sys/kern/subr_autoconf.c
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>1996-06-18 09:43:45 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>1996-06-18 09:43:45 +0000
commit7a0b7f798c45842a34a4c6413f45e1b3824154a5 (patch)
treecf1146bf2be6865bcd664c02f26d9ad70cb99a94 /sys/kern/subr_autoconf.c
parent70799176fac473334ad844b65eb0cf05178af47a (diff)
sick netbsd alpha hack (why not do what other ports do?)
Diffstat (limited to 'sys/kern/subr_autoconf.c')
-rw-r--r--sys/kern/subr_autoconf.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/sys/kern/subr_autoconf.c b/sys/kern/subr_autoconf.c
index f72a1c5f364..7eb5217034b 100644
--- a/sys/kern/subr_autoconf.c
+++ b/sys/kern/subr_autoconf.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: subr_autoconf.c,v 1.6 1996/05/07 15:23:36 niklas Exp $ */
+/* $OpenBSD: subr_autoconf.c,v 1.7 1996/06/18 09:43:44 deraadt Exp $ */
/* $NetBSD: subr_autoconf.c,v 1.21 1996/04/04 06:06:18 cgd Exp $ */
/*
@@ -375,6 +375,9 @@ config_attach(parent, match, aux, print)
cf->cf_unit++;
}
}
+#ifdef __alpha__
+ device_register(dev, aux);
+#endif
(*ca->ca_attach)(parent, dev, aux);
return (dev);
}