diff options
author | Mike Belopuhov <mikeb@cvs.openbsd.org> | 2014-08-20 06:14:44 +0000 |
---|---|---|
committer | Mike Belopuhov <mikeb@cvs.openbsd.org> | 2014-08-20 06:14:44 +0000 |
commit | a47828983e61e0be4f4cbbc4a3385039c90ad272 (patch) | |
tree | 098c6c9d1ccddc22ad7719c602fb3f96c33256ea /sys/arch/alpha | |
parent | d912268af18b8ad6413142cb7cd2f46da52365d8 (diff) |
unlink crypto(4) pseudo device from the architecture dependant character
device tables and kernel config files. ok deraadt
Diffstat (limited to 'sys/arch/alpha')
-rw-r--r-- | sys/arch/alpha/alpha/conf.c | 6 | ||||
-rw-r--r-- | sys/arch/alpha/conf/GENERIC | 3 |
2 files changed, 3 insertions, 6 deletions
diff --git a/sys/arch/alpha/alpha/conf.c b/sys/arch/alpha/alpha/conf.c index 83cea34498a..60ace4765f8 100644 --- a/sys/arch/alpha/alpha/conf.c +++ b/sys/arch/alpha/alpha/conf.c @@ -1,4 +1,4 @@ -/* $OpenBSD: conf.c,v 1.74 2013/11/04 17:14:26 deraadt Exp $ */ +/* $OpenBSD: conf.c,v 1.75 2014/08/20 06:14:42 mikeb Exp $ */ /* $NetBSD: conf.c,v 1.16 1996/10/18 21:26:57 cgd Exp $ */ /*- @@ -40,8 +40,6 @@ #include <sys/conf.h> #include <sys/vnode.h> -#include "inet.h" - #include "wd.h" bdev_decl(wd); #include "fd.h" @@ -192,7 +190,7 @@ struct cdevsw cdevsw[] = cdev_notdef(), 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 */ + cdev_notdef(), /* 57: was: /dev/crypto */ cdev_bktr_init(NBKTR,bktr), /* 58: Bt848 video capture device */ cdev_radio_init(NRADIO,radio), /* 59: generic radio I/O */ cdev_mouse_init(NWSMUX, wsmux), /* 60: ws multiplexor */ diff --git a/sys/arch/alpha/conf/GENERIC b/sys/arch/alpha/conf/GENERIC index 7b0c7900d61..da2ab11da65 100644 --- a/sys/arch/alpha/conf/GENERIC +++ b/sys/arch/alpha/conf/GENERIC @@ -1,4 +1,4 @@ -# $OpenBSD: GENERIC,v 1.246 2014/08/15 14:06:47 mikeb Exp $ +# $OpenBSD: GENERIC,v 1.247 2014/08/20 06:14:42 mikeb Exp $ # # For further information on compiling OpenBSD kernels, see the config(8) # man page. @@ -424,6 +424,5 @@ owsbm* at onewire? # Smart Battery Monitor owtemp* at onewire? # Temperature owctr* at onewire? # Counter device -pseudo-device crypto 1 pseudo-device hotplug 1 # devices hot plugging pseudo-device wsmux 2 # mouse & keyboard multiplexor |