diff options
author | 2014-04-08 13:23:51 +0000 | |
---|---|---|
committer | 2014-04-08 13:23:51 +0000 | |
commit | 3b4b55f262932687fb96808cabe01f666e125e87 (patch) | |
tree | b7c01a36d4a2ab7672b9d702e3d410a11ddbddbd | |
parent | zero-fill static buffer before use in DSN code (diff) | |
download | wireguard-openbsd-3b4b55f262932687fb96808cabe01f666e125e87.tar.xz wireguard-openbsd-3b4b55f262932687fb96808cabe01f666e125e87.zip |
Fewer <uvm/uvm.h>!
-rw-r--r-- | sys/arch/sparc/sparc/iommu.c | 4 | ||||
-rw-r--r-- | sys/arch/sparc/sparc/pmap.c | 6 |
2 files changed, 5 insertions, 5 deletions
diff --git a/sys/arch/sparc/sparc/iommu.c b/sys/arch/sparc/sparc/iommu.c index 4f7261bb01e..80bec486482 100644 --- a/sys/arch/sparc/sparc/iommu.c +++ b/sys/arch/sparc/sparc/iommu.c @@ -1,4 +1,4 @@ -/* $OpenBSD: iommu.c,v 1.25 2010/07/10 19:32:25 miod Exp $ */ +/* $OpenBSD: iommu.c,v 1.26 2014/04/08 13:23:51 mpi Exp $ */ /* $NetBSD: iommu.c,v 1.13 1997/07/29 09:42:04 fair Exp $ */ /* @@ -44,7 +44,7 @@ #include <sys/extent.h> #include <sys/mbuf.h> -#include <uvm/uvm.h> +#include <uvm/uvm_extern.h> #include <machine/pmap.h> diff --git a/sys/arch/sparc/sparc/pmap.c b/sys/arch/sparc/sparc/pmap.c index 1b1507a40a0..9e3a5eba96c 100644 --- a/sys/arch/sparc/sparc/pmap.c +++ b/sys/arch/sparc/sparc/pmap.c @@ -1,4 +1,4 @@ -/* $OpenBSD: pmap.c,v 1.163 2013/09/21 10:04:42 miod Exp $ */ +/* $OpenBSD: pmap.c,v 1.164 2014/04/08 13:23:51 mpi Exp $ */ /* $NetBSD: pmap.c,v 1.118 1998/05/19 19:00:18 thorpej Exp $ */ /* @@ -67,10 +67,10 @@ #include <sys/core.h> #include <sys/kcore.h> #include <sys/lock.h> - -#include <uvm/uvm.h> #include <sys/pool.h> +#include <uvm/uvm_extern.h> + #include <machine/autoconf.h> #include <machine/bsd_openprom.h> #include <machine/oldmon.h> |