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/hppa | |
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/hppa')
-rw-r--r-- | sys/arch/hppa/hppa/conf.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/sys/arch/hppa/hppa/conf.c b/sys/arch/hppa/hppa/conf.c index 81da77ab72a..18f2ab8357a 100644 --- a/sys/arch/hppa/hppa/conf.c +++ b/sys/arch/hppa/hppa/conf.c @@ -1,4 +1,4 @@ -/* $OpenBSD: conf.c,v 1.58 2013/11/04 14:11:29 deraadt Exp $ */ +/* $OpenBSD: conf.c,v 1.59 2014/08/20 06:14:42 mikeb Exp $ */ /*- * Copyright (c) 1991 The Regents of the University of California. @@ -87,7 +87,6 @@ int nblkdev = nitems(bdevsw); #include "wsmouse.h" #include "wsmux.h" -#include "inet.h" #include "bpfilter.h" #include "tun.h" @@ -163,7 +162,7 @@ struct cdevsw cdevsw[] = cdev_video_init(NVIDEO,video), /* 33: generic video I/O */ cdev_systrace_init(NSYSTRACE,systrace), /* 34: system call tracing */ cdev_audio_init(NAUDIO,audio), /* 35: /dev/audio */ - cdev_crypto_init(NCRYPTO,crypto), /* 36: /dev/crypto */ + cdev_notdef(), /* 36: was: /dev/crypto */ cdev_bio_init(NBIO,bio), /* 37: ioctl tunnel */ cdev_ptm_init(NPTY,ptm), /* 38: pseudo-tty ptm device */ cdev_disk_init(NWD,wd), /* 39: ST506 disk */ |