diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2020-05-29 04:42:26 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2020-05-29 04:42:26 +0000 |
commit | 7306560e7b6cab75131568161d847ba0bcebbeeb (patch) | |
tree | aff365fd9c4851785ea0abf5f58a3be7aaf230db /sys/arch/hppa | |
parent | fb3a8770b87c531b1cffd1a144a9eacba40dcd9f (diff) |
dev/rndvar.h no longer has statistical interfaces (removed during various
conversion steps). it only contains kernel prototypes for 4 interfaces,
all of which legitimately belong in sys/systm.h, which are already included
by all enqueue_randomness() users.
Diffstat (limited to 'sys/arch/hppa')
-rw-r--r-- | sys/arch/hppa/dev/cpu.c | 3 | ||||
-rw-r--r-- | sys/arch/hppa/gsc/harmony.c | 3 | ||||
-rw-r--r-- | sys/arch/hppa/hppa/pmap.c | 4 |
3 files changed, 3 insertions, 7 deletions
diff --git a/sys/arch/hppa/dev/cpu.c b/sys/arch/hppa/dev/cpu.c index 1c5aebfefb4..047d9602cd5 100644 --- a/sys/arch/hppa/dev/cpu.c +++ b/sys/arch/hppa/dev/cpu.c @@ -1,4 +1,4 @@ -/* $OpenBSD: cpu.c,v 1.41 2014/01/19 12:45:35 deraadt Exp $ */ +/* $OpenBSD: cpu.c,v 1.42 2020/05/29 04:42:23 deraadt Exp $ */ /* * Copyright (c) 1998-2003 Michael Shalayeff @@ -31,7 +31,6 @@ #include <sys/device.h> #include <sys/proc.h> #include <sys/reboot.h> -#include <dev/rndvar.h> #include <uvm/uvm_extern.h> diff --git a/sys/arch/hppa/gsc/harmony.c b/sys/arch/hppa/gsc/harmony.c index 24c52d0e3f6..033a3d2c356 100644 --- a/sys/arch/hppa/gsc/harmony.c +++ b/sys/arch/hppa/gsc/harmony.c @@ -1,4 +1,4 @@ -/* $OpenBSD: harmony.c,v 1.34 2018/04/28 15:44:59 jasper Exp $ */ +/* $OpenBSD: harmony.c,v 1.35 2020/05/29 04:42:23 deraadt Exp $ */ /* * Copyright (c) 2003 Jason L. Wright (jason@thought.net) @@ -41,7 +41,6 @@ #include <sys/audioio.h> #include <dev/audio_if.h> -#include <dev/rndvar.h> #include <machine/cpu.h> #include <machine/intr.h> diff --git a/sys/arch/hppa/hppa/pmap.c b/sys/arch/hppa/hppa/pmap.c index f9a9648aa9f..3e8c43a416a 100644 --- a/sys/arch/hppa/hppa/pmap.c +++ b/sys/arch/hppa/hppa/pmap.c @@ -1,4 +1,4 @@ -/* $OpenBSD: pmap.c,v 1.173 2017/04/30 16:45:45 mpi Exp $ */ +/* $OpenBSD: pmap.c,v 1.174 2020/05/29 04:42:23 deraadt Exp $ */ /* * Copyright (c) 1998-2004 Michael Shalayeff @@ -45,8 +45,6 @@ #include <machine/cpufunc.h> #include <machine/iomod.h> -#include <dev/rndvar.h> - #ifdef PMAPDEBUG #define DPRINTF(l,s) do { \ if ((pmapdebug & (l)) == (l)) \ |