summaryrefslogtreecommitdiff
path: root/sys/dev
diff options
context:
space:
mode:
authorBrad Smith <brad@cvs.openbsd.org>2003-12-29 23:06:56 +0000
committerBrad Smith <brad@cvs.openbsd.org>2003-12-29 23:06:56 +0000
commit63e8b4fcf61c02a069d78708e789aca785943ccf (patch)
tree4326e40ef4433893ca8941c09c7aa21a85640241 /sys/dev
parent91724bed7c8fdd7a90d66f996377dc25daa21bb6 (diff)
no vtophys(), don't need uvm_extern.h anymore.
tested on alpha, i386, macppc and sparc64. ok millert@ mickey@
Diffstat (limited to 'sys/dev')
-rw-r--r--sys/dev/ic/fxp.c4
-rw-r--r--sys/dev/ic/gem.c4
-rw-r--r--sys/dev/pci/if_fpa.c4
-rw-r--r--sys/dev/pci/if_gem_pci.c4
-rw-r--r--sys/dev/pci/if_rl_pci.c3
-rw-r--r--sys/dev/pci/if_txp.c3
-rw-r--r--sys/dev/pci/if_vr.c4
7 files changed, 7 insertions, 19 deletions
diff --git a/sys/dev/ic/fxp.c b/sys/dev/ic/fxp.c
index 2ac3c34d33a..3162384eae9 100644
--- a/sys/dev/ic/fxp.c
+++ b/sys/dev/ic/fxp.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: fxp.c,v 1.44 2003/12/23 15:16:44 mickey Exp $ */
+/* $OpenBSD: fxp.c,v 1.45 2003/12/29 23:06:55 brad Exp $ */
/* $NetBSD: if_fxp.c,v 1.2 1997/06/05 02:01:55 thorpej Exp $ */
/*
@@ -82,8 +82,6 @@
#include <netinet/if_ether.h>
-#include <uvm/uvm_extern.h>
-
#include <machine/cpu.h>
#include <machine/bus.h>
#include <machine/intr.h>
diff --git a/sys/dev/ic/gem.c b/sys/dev/ic/gem.c
index 162c8a7f68b..2cc014baac1 100644
--- a/sys/dev/ic/gem.c
+++ b/sys/dev/ic/gem.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: gem.c,v 1.34 2003/07/15 03:52:30 jason Exp $ */
+/* $OpenBSD: gem.c,v 1.35 2003/12/29 23:06:55 brad Exp $ */
/* $NetBSD: gem.c,v 1.1 2001/09/16 00:11:43 eeh Exp $ */
/*
@@ -51,8 +51,6 @@
#include <machine/endian.h>
-#include <uvm/uvm_extern.h>
-
#include <net/if.h>
#include <net/if_dl.h>
#include <net/if_media.h>
diff --git a/sys/dev/pci/if_fpa.c b/sys/dev/pci/if_fpa.c
index 58f007e5ca6..e713e2193f4 100644
--- a/sys/dev/pci/if_fpa.c
+++ b/sys/dev/pci/if_fpa.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: if_fpa.c,v 1.21 2002/11/19 18:40:17 jason Exp $ */
+/* $OpenBSD: if_fpa.c,v 1.22 2003/12/29 23:06:55 brad Exp $ */
/* $NetBSD: if_fpa.c,v 1.15 1996/10/21 22:56:40 thorpej Exp $ */
/*-
@@ -62,8 +62,6 @@
#endif
#include <net/if_fddi.h>
-#include <uvm/uvm_extern.h>
-
#include <dev/pci/pcidevs.h>
#include <dev/pci/pcivar.h>
#include <dev/ic/pdqvar.h>
diff --git a/sys/dev/pci/if_gem_pci.c b/sys/dev/pci/if_gem_pci.c
index 3da48ea5af4..62207fcc01a 100644
--- a/sys/dev/pci/if_gem_pci.c
+++ b/sys/dev/pci/if_gem_pci.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: if_gem_pci.c,v 1.12 2002/11/20 00:31:03 jason Exp $ */
+/* $OpenBSD: if_gem_pci.c,v 1.13 2003/12/29 23:06:55 brad Exp $ */
/* $NetBSD: if_gem_pci.c,v 1.1 2001/09/16 00:11:42 eeh Exp $ */
/*
@@ -44,8 +44,6 @@
#include <machine/endian.h>
-#include <uvm/uvm_extern.h>
-
#include <net/if.h>
#include <net/if_dl.h>
#include <net/if_media.h>
diff --git a/sys/dev/pci/if_rl_pci.c b/sys/dev/pci/if_rl_pci.c
index 41f895e90ac..a912bf53dfe 100644
--- a/sys/dev/pci/if_rl_pci.c
+++ b/sys/dev/pci/if_rl_pci.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: if_rl_pci.c,v 1.8 2002/11/19 18:40:17 jason Exp $ */
+/* $OpenBSD: if_rl_pci.c,v 1.9 2003/12/29 23:06:55 brad Exp $ */
/*
* Copyright (c) 1997, 1998
@@ -62,7 +62,6 @@
#include <net/bpf.h>
#endif
-#include <uvm/uvm_extern.h> /* for vtophys */
#include <machine/bus.h>
#include <dev/mii/mii.h>
diff --git a/sys/dev/pci/if_txp.c b/sys/dev/pci/if_txp.c
index b3ddc71ff88..b7c614ba9f1 100644
--- a/sys/dev/pci/if_txp.c
+++ b/sys/dev/pci/if_txp.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: if_txp.c,v 1.70 2003/10/22 11:02:41 henning Exp $ */
+/* $OpenBSD: if_txp.c,v 1.71 2003/12/29 23:06:55 brad Exp $ */
/*
* Copyright (c) 2001
@@ -66,7 +66,6 @@
#include <net/if_vlan_var.h>
#endif
-#include <uvm/uvm_extern.h> /* for vtophys */
#include <machine/bus.h>
#include <dev/mii/mii.h>
diff --git a/sys/dev/pci/if_vr.c b/sys/dev/pci/if_vr.c
index e9d28b605ac..bfc2d4ee709 100644
--- a/sys/dev/pci/if_vr.c
+++ b/sys/dev/pci/if_vr.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: if_vr.c,v 1.40 2003/10/14 05:04:00 drahn Exp $ */
+/* $OpenBSD: if_vr.c,v 1.41 2003/12/29 23:06:55 brad Exp $ */
/*
* Copyright (c) 1997, 1998
@@ -89,8 +89,6 @@
#include <machine/bus.h>
-#include <uvm/uvm_extern.h> /* for vtophys */
-
#include <dev/mii/mii.h>
#include <dev/mii/miivar.h>