summaryrefslogtreecommitdiff
path: root/sys/arch/atari
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/atari
parentb4e543edbd7e39e612fb304dfe026020ec8c5d55 (diff)
random device is permanent now.
Diffstat (limited to 'sys/arch/atari')
-rw-r--r--sys/arch/atari/atari/conf.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/sys/arch/atari/atari/conf.c b/sys/arch/atari/atari/conf.c
index 12fedbe5d74..c8a7a09a11a 100644
--- a/sys/arch/atari/atari/conf.c
+++ b/sys/arch/atari/atari/conf.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: conf.c,v 1.7 1996/08/29 09:25:59 deraadt Exp $ */
+/* $OpenBSD: conf.c,v 1.8 1996/10/19 13:26:06 mickey Exp $ */
/*
* Copyright (c) 1991 The Regents of the University of California.
@@ -152,7 +152,6 @@ cdev_decl(tun);
#define NLKM 0
#endif
cdev_decl(lkm);
-#include "random.h"
cdev_decl(random);
/* open, close, read, ioctl */
@@ -197,7 +196,7 @@ struct cdevsw cdevsw[] =
cdev_disk_init(NCCD,ccd), /* 27: concatenated disk driver */
cdev_bpftun_init(NTUN,tun), /* 28: network tunnel */
cdev_gen_ipf(NIPF,ipl), /* 29: IP filter log */
- cdev_random_init(NRANDOM,random), /* 30: random data source */
+ cdev_random_init(1,random), /* 30: random data source */
};
int nchrdev = sizeof(cdevsw) / sizeof(cdevsw[0]);