summaryrefslogtreecommitdiffstats
path: root/sys/i386
diff options
context:
space:
mode:
authorbde <bde@FreeBSD.org>1996-04-07 17:39:28 +0000
committerbde <bde@FreeBSD.org>1996-04-07 17:39:28 +0000
commitd75a1370e4a34158937694ef6dc2b5cec2689bc1 (patch)
treea028bed739648741257da33b25b41aa98782b6f1 /sys/i386
parentcfdfb3c281cd6aecdf142a332ce950994f4c4a18 (diff)
downloadFreeBSD-src-d75a1370e4a34158937694ef6dc2b5cec2689bc1.zip
FreeBSD-src-d75a1370e4a34158937694ef6dc2b5cec2689bc1.tar.gz
Removed never-used #includes of <machine/cpu.h>. Many were apparently
copied from bad examples.
Diffstat (limited to 'sys/i386')
-rw-r--r--sys/i386/i386/vm_machdep.c3
-rw-r--r--sys/i386/isa/if_eg.c3
-rw-r--r--sys/i386/isa/qcam.c1
-rw-r--r--sys/i386/isa/qcamio.c1
-rw-r--r--sys/i386/isa/random_machdep.c3
-rw-r--r--sys/i386/isa/wd7000.c1
-rw-r--r--sys/i386/linux/linux_misc.c5
7 files changed, 4 insertions, 13 deletions
diff --git a/sys/i386/i386/vm_machdep.c b/sys/i386/i386/vm_machdep.c
index a07c34b..ba93458 100644
--- a/sys/i386/i386/vm_machdep.c
+++ b/sys/i386/i386/vm_machdep.c
@@ -38,7 +38,7 @@
*
* from: @(#)vm_machdep.c 7.3 (Berkeley) 5/13/91
* Utah $Hdr: vm_machdep.c 1.16.1.1 89/06/23$
- * $Id: vm_machdep.c,v 1.56 1996/02/05 14:23:19 davidg Exp $
+ * $Id: vm_machdep.c,v 1.57 1996/03/03 01:57:45 jkh Exp $
*/
#include "npx.h"
@@ -53,7 +53,6 @@
#include <sys/vmmeter.h>
#include <machine/clock.h>
-#include <machine/cpu.h>
#include <machine/md_var.h>
#include <vm/vm.h>
diff --git a/sys/i386/isa/if_eg.c b/sys/i386/isa/if_eg.c
index 9d2f3bf..9c3a81a 100644
--- a/sys/i386/isa/if_eg.c
+++ b/sys/i386/isa/if_eg.c
@@ -27,7 +27,7 @@
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
- * $Id: if_eg.c,v 1.11 1996/01/26 09:27:17 phk Exp $
+ * $Id: if_eg.c,v 1.12 1996/02/06 18:50:39 wollman Exp $
*/
/* To do:
@@ -74,7 +74,6 @@
#include <net/bpfdesc.h>
#endif
-#include <machine/cpu.h>
#include <machine/clock.h>
#include <i386/isa/isa.h>
diff --git a/sys/i386/isa/qcam.c b/sys/i386/isa/qcam.c
index e0b076d..0068035 100644
--- a/sys/i386/isa/qcam.c
+++ b/sys/i386/isa/qcam.c
@@ -51,7 +51,6 @@
#include <sys/devfsext.h>
#endif /* DEVFS */
-#include <machine/cpu.h>
#include <machine/clock.h>
#include <machine/qcam.h>
diff --git a/sys/i386/isa/qcamio.c b/sys/i386/isa/qcamio.c
index b8999eb..62a1d3b 100644
--- a/sys/i386/isa/qcamio.c
+++ b/sys/i386/isa/qcamio.c
@@ -39,7 +39,6 @@
#if NQCAM > 0
#include <sys/param.h>
-#include <machine/cpu.h>
#include <machine/cpufunc.h>
#include <machine/clock.h>
#ifdef KERNEL
diff --git a/sys/i386/isa/random_machdep.c b/sys/i386/isa/random_machdep.c
index 507d875..39fdf6f 100644
--- a/sys/i386/isa/random_machdep.c
+++ b/sys/i386/isa/random_machdep.c
@@ -1,7 +1,7 @@
/*
* random_machdep.c -- A strong random number generator
*
- * $Id$
+ * $Id: random_machdep.c,v 1.4 1995/12/29 08:04:32 markm Exp $
*
* Version 0.95, last modified 18-Oct-95
*
@@ -46,7 +46,6 @@
#include <sys/kernel.h>
#include <machine/clock.h>
-#include <machine/cpu.h>
#include <machine/random.h>
#include <i386/isa/isa.h>
diff --git a/sys/i386/isa/wd7000.c b/sys/i386/isa/wd7000.c
index 09777d1..0a81a94 100644
--- a/sys/i386/isa/wd7000.c
+++ b/sys/i386/isa/wd7000.c
@@ -65,7 +65,6 @@
#include <sys/devconf.h>
#include <machine/clock.h>
-#include <machine/cpu.h>
#include <vm/vm.h>
#include <vm/vm_param.h>
diff --git a/sys/i386/linux/linux_misc.c b/sys/i386/linux/linux_misc.c
index 6f8ec9e..bbdb303 100644
--- a/sys/i386/linux/linux_misc.c
+++ b/sys/i386/linux/linux_misc.c
@@ -25,7 +25,7 @@
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
- * $Id: linux_misc.c,v 1.16 1996/03/12 06:20:14 peter Exp $
+ * $Id: linux_misc.c,v 1.17 1996/03/19 15:02:34 bde Exp $
*/
#include <sys/param.h>
@@ -61,9 +61,6 @@
#include <vm/vm_map.h>
#include <vm/vm_extern.h>
-#include <machine/cpu.h>
-#include <machine/psl.h>
-
#include <i386/linux/linux.h>
#include <i386/linux/linux_proto.h>
#include <i386/linux/linux_util.h>
OpenPOWER on IntegriCloud