diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2004-06-18 20:35:51 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2004-06-18 20:35:51 +0000 |
commit | 36ac2df6437f8b18fc42d36f21a57b8b35355f69 (patch) | |
tree | 1884c782f61ad31a32e0ea53fd1899256e212ff1 /sys/arch | |
parent | 97077b5e3cc9222b2f366a40c5675f01d22a5e42 (diff) |
Add /dev/crypto support.
Diffstat (limited to 'sys/arch')
-rw-r--r-- | sys/arch/alpha/alpha/conf.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/sys/arch/alpha/alpha/conf.c b/sys/arch/alpha/alpha/conf.c index b03cb6a16fa..1546c17587f 100644 --- a/sys/arch/alpha/alpha/conf.c +++ b/sys/arch/alpha/alpha/conf.c @@ -1,4 +1,4 @@ -/* $OpenBSD: conf.c,v 1.49 2004/05/30 08:11:25 grange Exp $ */ +/* $OpenBSD: conf.c,v 1.50 2004/06/18 20:35:50 miod Exp $ */ /* $NetBSD: conf.c,v 1.16 1996/10/18 21:26:57 cgd Exp $ */ /*- @@ -40,6 +40,8 @@ #include <sys/conf.h> #include <sys/vnode.h> +#include "inet.h" + #include "wd.h" bdev_decl(wd); #include "fd.h" @@ -195,6 +197,7 @@ struct cdevsw cdevsw[] = cdev_iop_init(NIOP, iop), /* 54: I2O IOP control interface */ cdev_ptm_init(NPTY,ptm), /* 55: pseudo-tty ptm device */ cdev_hotplug_init(NHOTPLUG,hotplug), /* 56: devices hot plugging */ + cdev_crypto_init(NCRYPTO,crypto), /* 57: /dev/crypto */ }; int nchrdev = sizeof (cdevsw) / sizeof (cdevsw[0]); |