summaryrefslogtreecommitdiff
path: root/sys/arch/mac68k
diff options
context:
space:
mode:
authorMichael Shalayeff <mickey@cvs.openbsd.org>1996-10-19 13:26:17 +0000
committerMichael Shalayeff <mickey@cvs.openbsd.org>1996-10-19 13:26:17 +0000
commit8e6eee9ee84e77057177afaa31ecaf6a93f79f67 (patch)
tree68dd7672992cc88f5f8a0c730cfa3e737f199acb /sys/arch/mac68k
parentb4e543edbd7e39e612fb304dfe026020ec8c5d55 (diff)
random device is permanent now.
Diffstat (limited to 'sys/arch/mac68k')
-rw-r--r--sys/arch/mac68k/mac68k/conf.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/sys/arch/mac68k/mac68k/conf.c b/sys/arch/mac68k/mac68k/conf.c
index 810e2e0eab0..6fb81012ddc 100644
--- a/sys/arch/mac68k/mac68k/conf.c
+++ b/sys/arch/mac68k/mac68k/conf.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: conf.c,v 1.10 1996/08/29 09:26:14 deraadt Exp $ */
+/* $OpenBSD: conf.c,v 1.11 1996/10/19 13:26:08 mickey Exp $ */
/* $NetBSD: conf.c,v 1.34 1996/06/19 02:20:54 briggs Exp $ */
/*
@@ -134,7 +134,6 @@ cdev_decl(bpf);
#include "tun.h"
cdev_decl(tun);
dev_decl(filedesc,open);
-#include "random.h"
cdev_decl(random);
#ifdef LKM
@@ -189,7 +188,7 @@ struct cdevsw cdevsw[] =
cdev_lkm_dummy(), /* 30 */
cdev_lkm_dummy(), /* 31 */
cdev_gen_ipf(NIPF,ipl), /* 32: IP filter log */
- cdev_random_init(NRANDOM,random), /* 33: random data source */
+ cdev_random_init(1,random), /* 33: random data source */
};
int nchrdev = sizeof(cdevsw) / sizeof(cdevsw[0]);