aboutsummaryrefslogtreecommitdiff
path: root/sys/dev/syscons
diff options
context:
space:
mode:
authorDavid E. O'Brien <obrien@FreeBSD.org>2000-04-24 17:30:08 +0000
committerDavid E. O'Brien <obrien@FreeBSD.org>2000-04-24 17:30:08 +0000
commitb0e56cde375a6423213d8fd5938d06cb42622f0c (patch)
tree29b15e4f631df22a9adbe7c5aba1b2ac8516de38 /sys/dev/syscons
parent326e27d81f29a67ad3042ead71d76c0e9541d98f (diff)
downloadsrc-b0e56cde375a6423213d8fd5938d06cb42622f0c.tar.gz
src-b0e56cde375a6423213d8fd5938d06cb42622f0c.zip
* Use sys/sys/random.h rather than a i386 specific one.
* There was nothing that should be machine dependant about i386/isa/random_machdep.c, so it is now sys/kern/kern_random.c.
Notes
Notes: svn path=/head/; revision=59604
Diffstat (limited to 'sys/dev/syscons')
-rw-r--r--sys/dev/syscons/syscons.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/dev/syscons/syscons.c b/sys/dev/syscons/syscons.c
index 06c77cf6a175..0d60d321e8dc 100644
--- a/sys/dev/syscons/syscons.c
+++ b/sys/dev/syscons/syscons.c
@@ -47,6 +47,7 @@
#include <sys/kernel.h>
#include <sys/malloc.h>
#include <sys/cons.h>
+#include <sys/random.h>
#include <machine/clock.h>
#include <machine/console.h>
@@ -55,7 +56,6 @@
#ifdef __i386__
#include <machine/apm_bios.h>
#include <machine/frame.h>
-#include <machine/random.h>
#endif
#include <dev/kbd/kbdreg.h>