diff options
author | 1996-06-18 09:43:44 +0000 | |
---|---|---|
committer | 1996-06-18 09:43:44 +0000 | |
commit | 357b784b6a1297f28d888b68fdc13fa6c381f06f (patch) | |
tree | b58ff26582031393a24f7aa6a6e2c8ec2c7a1d5a | |
parent | sync to 0616, retaining local diffs (diff) | |
download | wireguard-openbsd-357b784b6a1297f28d888b68fdc13fa6c381f06f.tar.xz wireguard-openbsd-357b784b6a1297f28d888b68fdc13fa6c381f06f.zip |
sick netbsd alpha hack (why not do what other ports do?)
-rw-r--r-- | sys/kern/subr_autoconf.c | 5 |
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); } |