summaryrefslogtreecommitdiffstats
path: root/sys/i386
diff options
context:
space:
mode:
authorbde <bde@FreeBSD.org>1997-10-28 15:59:26 +0000
committerbde <bde@FreeBSD.org>1997-10-28 15:59:26 +0000
commitfb826377ffc6b723d16bad73fa1b409c899e426b (patch)
tree3bad2b19f3a85a6c361105915e12314ccc230374 /sys/i386
parent5a1ca03129e88f784641226591a7e131195542e3 (diff)
downloadFreeBSD-src-fb826377ffc6b723d16bad73fa1b409c899e426b.zip
FreeBSD-src-fb826377ffc6b723d16bad73fa1b409c899e426b.tar.gz
Removed unused #includes.
Diffstat (limited to 'sys/i386')
-rw-r--r--sys/i386/eisa/eisaconf.c5
-rw-r--r--sys/i386/i386/initcpu.c3
-rw-r--r--sys/i386/i386/microtime.s4
-rw-r--r--sys/i386/i386/mp_machdep.c3
-rw-r--r--sys/i386/i386/mptable.c3
-rw-r--r--sys/i386/i386/perfmon.c5
-rw-r--r--sys/i386/i386/pmap.c6
-rw-r--r--sys/i386/include/mptable.h3
-rw-r--r--sys/i386/isa/random_machdep.c5
9 files changed, 9 insertions, 28 deletions
diff --git a/sys/i386/eisa/eisaconf.c b/sys/i386/eisa/eisaconf.c
index 0899fee..f1e7262 100644
--- a/sys/i386/eisa/eisaconf.c
+++ b/sys/i386/eisa/eisaconf.c
@@ -28,7 +28,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
- * $Id: eisaconf.c,v 1.30 1997/08/21 20:33:29 bde Exp $
+ * $Id: eisaconf.c,v 1.31 1997/09/21 21:35:23 gibbs Exp $
*/
#include "opt_eisa.h"
@@ -42,9 +42,6 @@
#include <i386/eisa/eisaconf.h>
-#include <i386/isa/icu.h> /* Hmmm. Interrupt stuff? */
-
-#include <i386/isa/intr_machdep.h>
#include <sys/interrupt.h>
struct eisa_device_node{
diff --git a/sys/i386/i386/initcpu.c b/sys/i386/i386/initcpu.c
index 077aa31..3b1182f 100644
--- a/sys/i386/i386/initcpu.c
+++ b/sys/i386/i386/initcpu.c
@@ -26,7 +26,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: initcpu.c,v 1.7 1997/07/24 14:19:25 kato Exp $
+ * $Id: initcpu.c,v 1.8 1997/10/06 08:08:41 kato Exp $
*/
#include "opt_cpu.h"
@@ -35,7 +35,6 @@
#include <sys/kernel.h>
#include <sys/systm.h>
-#include <machine/cpu.h>
#include <machine/cputypes.h>
#include <machine/md_var.h>
#include <machine/specialreg.h>
diff --git a/sys/i386/i386/microtime.s b/sys/i386/i386/microtime.s
index 16571a9..62cdac5 100644
--- a/sys/i386/i386/microtime.s
+++ b/sys/i386/i386/microtime.s
@@ -32,11 +32,9 @@
* SUCH DAMAGE.
*
* from: Steve McCanne's microtime code
- * $Id: microtime.s,v 1.10 1997/09/07 21:50:13 smp Exp smp $
+ * $Id: microtime.s,v 1.33 1997/09/07 22:03:51 fsmp Exp $
*/
-#include "opt_cpu.h"
-
#include <machine/asmacros.h>
#include <i386/isa/icu.h>
diff --git a/sys/i386/i386/mp_machdep.c b/sys/i386/i386/mp_machdep.c
index ad3841a..a31857a 100644
--- a/sys/i386/i386/mp_machdep.c
+++ b/sys/i386/i386/mp_machdep.c
@@ -22,7 +22,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
- * $Id: mp_machdep.c,v 1.57 1997/10/10 09:44:03 peter Exp $
+ * $Id: mp_machdep.c,v 1.58 1997/10/12 15:24:39 peter Exp $
*/
#include "opt_smp.h"
@@ -47,7 +47,6 @@
#include <machine/smptests.h> /** TEST_DEFAULT_CONFIG, TEST_TEST1 */
#include <machine/tss.h>
#include <machine/specialreg.h>
-#include <machine/cpu.h>
#include <machine/cputypes.h>
#include <i386/i386/cons.h> /* cngetc() */
diff --git a/sys/i386/i386/mptable.c b/sys/i386/i386/mptable.c
index ad3841a..a31857a 100644
--- a/sys/i386/i386/mptable.c
+++ b/sys/i386/i386/mptable.c
@@ -22,7 +22,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
- * $Id: mp_machdep.c,v 1.57 1997/10/10 09:44:03 peter Exp $
+ * $Id: mp_machdep.c,v 1.58 1997/10/12 15:24:39 peter Exp $
*/
#include "opt_smp.h"
@@ -47,7 +47,6 @@
#include <machine/smptests.h> /** TEST_DEFAULT_CONFIG, TEST_TEST1 */
#include <machine/tss.h>
#include <machine/specialreg.h>
-#include <machine/cpu.h>
#include <machine/cputypes.h>
#include <i386/i386/cons.h> /* cngetc() */
diff --git a/sys/i386/i386/perfmon.c b/sys/i386/i386/perfmon.c
index 5542173..5f3a5cc 100644
--- a/sys/i386/i386/perfmon.c
+++ b/sys/i386/i386/perfmon.c
@@ -26,17 +26,14 @@
* OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
- * $Id: perfmon.c,v 1.10 1997/02/22 09:32:35 peter Exp $
+ * $Id: perfmon.c,v 1.11 1997/07/01 01:18:38 bde Exp $
*/
-#include "opt_cpu.h"
-
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/fcntl.h>
#ifndef SMP
-#include <machine/cpu.h>
#include <machine/cputypes.h>
#include <machine/clock.h>
#endif
diff --git a/sys/i386/i386/pmap.c b/sys/i386/i386/pmap.c
index 38f878a..03a30f0 100644
--- a/sys/i386/i386/pmap.c
+++ b/sys/i386/i386/pmap.c
@@ -39,7 +39,7 @@
* SUCH DAMAGE.
*
* from: @(#)pmap.c 7.7 (Berkeley) 5/12/91
- * $Id: pmap.c,v 1.167 1997/10/26 12:33:39 dyson Exp $
+ * $Id: pmap.c,v 1.168 1997/10/27 00:34:15 dyson Exp $
*/
/*
@@ -68,12 +68,9 @@
* and to when physical maps must be made correct.
*/
-#include "opt_cpu.h"
-
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/proc.h>
-#include <sys/malloc.h>
#include <sys/msgbuf.h>
#include <sys/vmmeter.h>
#include <sys/mman.h>
@@ -93,7 +90,6 @@
#include <sys/user.h>
-#include <machine/cpu.h>
#include <machine/cputypes.h>
#include <machine/md_var.h>
#include <machine/specialreg.h>
diff --git a/sys/i386/include/mptable.h b/sys/i386/include/mptable.h
index ad3841a..a31857a 100644
--- a/sys/i386/include/mptable.h
+++ b/sys/i386/include/mptable.h
@@ -22,7 +22,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
- * $Id: mp_machdep.c,v 1.57 1997/10/10 09:44:03 peter Exp $
+ * $Id: mp_machdep.c,v 1.58 1997/10/12 15:24:39 peter Exp $
*/
#include "opt_smp.h"
@@ -47,7 +47,6 @@
#include <machine/smptests.h> /** TEST_DEFAULT_CONFIG, TEST_TEST1 */
#include <machine/tss.h>
#include <machine/specialreg.h>
-#include <machine/cpu.h>
#include <machine/cputypes.h>
#include <i386/i386/cons.h> /* cngetc() */
diff --git a/sys/i386/isa/random_machdep.c b/sys/i386/isa/random_machdep.c
index 70d3c95..3c4f9eb 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: random_machdep.c,v 1.17 1997/05/04 14:28:22 peter Exp $
+ * $Id: random_machdep.c,v 1.18 1997/09/14 03:19:15 peter Exp $
*
* Version 0.95, last modified 18-Oct-95
*
@@ -39,14 +39,11 @@
* OF THE POSSIBILITY OF SUCH DAMAGE.
*/
-#include "opt_cpu.h"
-
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/kernel.h>
#include <sys/select.h>
#include <sys/poll.h>
-#include <sys/fcntl.h>
#include <machine/clock.h>
#include <machine/random.h>
OpenPOWER on IntegriCloud