aboutsummaryrefslogtreecommitdiff
path: root/sys/i386
diff options
context:
space:
mode:
authorEd Maste <emaste@FreeBSD.org>2018-03-20 17:58:51 +0000
committerEd Maste <emaste@FreeBSD.org>2018-03-20 17:58:51 +0000
commitfc2a8776a2f9945f22301cd92ec6d3ac1f817028 (patch)
tree78c912ee21149bfb6fe70831431758e2b8777b3c /sys/i386
parent9cffc92c62d9cbf592206ac70cd96ebef816b298 (diff)
downloadsrc-fc2a8776a2f9945f22301cd92ec6d3ac1f817028.tar.gz
src-fc2a8776a2f9945f22301cd92ec6d3ac1f817028.zip
Rename assym.s to assym.inc
assym is only to be included by other .s files, and should never actually be assembled by itself. Reviewed by: imp, bdrewery (earlier) Sponsored by: The FreeBSD Foundation Differential Revision: https://reviews.freebsd.org/D14180
Notes
Notes: svn path=/head/; revision=331254
Diffstat (limited to 'sys/i386')
-rw-r--r--sys/i386/acpica/acpi_wakecode.S2
-rw-r--r--sys/i386/i386/apic_vector.s2
-rw-r--r--sys/i386/i386/atpic_vector.s2
-rw-r--r--sys/i386/i386/bioscall.s2
-rw-r--r--sys/i386/i386/exception.s2
-rw-r--r--sys/i386/i386/locore.s2
-rw-r--r--sys/i386/i386/mpboot.s2
-rw-r--r--sys/i386/i386/sigtramp.s2
-rw-r--r--sys/i386/i386/support.s2
-rw-r--r--sys/i386/i386/swtch.s2
-rw-r--r--sys/i386/i386/vm86bios.s2
-rw-r--r--sys/i386/linux/linux_locore.s2
-rw-r--r--sys/i386/linux/linux_support.s2
13 files changed, 13 insertions, 13 deletions
diff --git a/sys/i386/acpica/acpi_wakecode.S b/sys/i386/acpica/acpi_wakecode.S
index 9c91c208efcd..04799d5f5a06 100644
--- a/sys/i386/acpica/acpi_wakecode.S
+++ b/sys/i386/acpica/acpi_wakecode.S
@@ -34,7 +34,7 @@
#include <machine/specialreg.h>
#include <machine/timerreg.h>
-#include "assym.s"
+#include "assym.inc"
/*
* Resume entry point. The BIOS enters here in real mode after POST with
diff --git a/sys/i386/i386/apic_vector.s b/sys/i386/i386/apic_vector.s
index 3cf2f307eabc..3627f4a06a1e 100644
--- a/sys/i386/i386/apic_vector.s
+++ b/sys/i386/i386/apic_vector.s
@@ -42,7 +42,7 @@
#include <machine/specialreg.h>
#include <x86/apicreg.h>
-#include "assym.s"
+#include "assym.inc"
.text
SUPERALIGN_TEXT
diff --git a/sys/i386/i386/atpic_vector.s b/sys/i386/i386/atpic_vector.s
index ebbd505ed4fc..29adbad243cd 100644
--- a/sys/i386/i386/atpic_vector.s
+++ b/sys/i386/i386/atpic_vector.s
@@ -38,7 +38,7 @@
#include <machine/asmacros.h>
-#include "assym.s"
+#include "assym.inc"
/*
* Macros for interrupt entry, call to handler, and exit.
diff --git a/sys/i386/i386/bioscall.s b/sys/i386/i386/bioscall.s
index 3af198adb5e9..c40b9ea4e029 100644
--- a/sys/i386/i386/bioscall.s
+++ b/sys/i386/i386/bioscall.s
@@ -32,7 +32,7 @@
#include <machine/asmacros.h>
-#include "assym.s"
+#include "assym.inc"
.data
ALIGN_DATA
diff --git a/sys/i386/i386/exception.s b/sys/i386/i386/exception.s
index 36ac5796c085..e9bab229bdcc 100644
--- a/sys/i386/i386/exception.s
+++ b/sys/i386/i386/exception.s
@@ -42,7 +42,7 @@
#include <machine/psl.h>
#include <machine/trap.h>
-#include "assym.s"
+#include "assym.inc
#define SEL_RPL_MASK 0x0003
#define GSEL_KPL 0x0020 /* GSEL(GCODE_SEL, SEL_KPL) */
diff --git a/sys/i386/i386/locore.s b/sys/i386/i386/locore.s
index 8685e1a9c7e5..5d2add7a12cf 100644
--- a/sys/i386/i386/locore.s
+++ b/sys/i386/i386/locore.s
@@ -52,7 +52,7 @@
#include <machine/pmap.h>
#include <machine/specialreg.h>
-#include "assym.s"
+#include "assym.inc"
/*
* XXX
diff --git a/sys/i386/i386/mpboot.s b/sys/i386/i386/mpboot.s
index cdbd28363708..1130284034f1 100644
--- a/sys/i386/i386/mpboot.s
+++ b/sys/i386/i386/mpboot.s
@@ -35,7 +35,7 @@
#include <x86/apicreg.h>
#include <machine/specialreg.h>
-#include "assym.s"
+#include "assym.inc"
#define R(x) ((x)-KERNBASE)
diff --git a/sys/i386/i386/sigtramp.s b/sys/i386/i386/sigtramp.s
index 61a3c2ad6f29..d0c142761294 100644
--- a/sys/i386/i386/sigtramp.s
+++ b/sys/i386/i386/sigtramp.s
@@ -45,7 +45,7 @@
#include <machine/asmacros.h>
#include <machine/psl.h>
-#include "assym.s"
+#include "assym.inc"
/*
* Signal trampoline, copied to top of user stack
diff --git a/sys/i386/i386/support.s b/sys/i386/i386/support.s
index c44f37427bc4..0ce4107caac0 100644
--- a/sys/i386/i386/support.s
+++ b/sys/i386/i386/support.s
@@ -34,7 +34,7 @@
#include <machine/pmap.h>
#include <machine/specialreg.h>
-#include "assym.s"
+#include "assym.inc"
#define IDXSHIFT 10
diff --git a/sys/i386/i386/swtch.s b/sys/i386/i386/swtch.s
index 4562c7ed87f4..ed0fab9dbbad 100644
--- a/sys/i386/i386/swtch.s
+++ b/sys/i386/i386/swtch.s
@@ -36,7 +36,7 @@
#include <machine/asmacros.h>
-#include "assym.s"
+#include "assym.inc"
#if defined(SMP) && defined(SCHED_ULE)
#define SETOP xchgl
diff --git a/sys/i386/i386/vm86bios.s b/sys/i386/i386/vm86bios.s
index 98c6f3da15dc..c71fc4a31d72 100644
--- a/sys/i386/i386/vm86bios.s
+++ b/sys/i386/i386/vm86bios.s
@@ -29,7 +29,7 @@
#include <machine/asmacros.h> /* miscellaneous asm macros */
#include <machine/trap.h>
-#include "assym.s"
+#include "assym.inc"
#define SCR_NEWPTD PCB_ESI /* readability macros */
#define SCR_VMFRAME PCB_EBP /* see vm86.c for explanation */
diff --git a/sys/i386/linux/linux_locore.s b/sys/i386/linux/linux_locore.s
index 34d0434704e9..8c2499af872e 100644
--- a/sys/i386/linux/linux_locore.s
+++ b/sys/i386/linux/linux_locore.s
@@ -5,7 +5,7 @@
#include <i386/linux/linux_syscall.h> /* system call numbers */
-#include "assym.s"
+#include "assym.inc"
/*
* To avoid excess stack frame the signal trampoline code emulates
diff --git a/sys/i386/linux/linux_support.s b/sys/i386/linux/linux_support.s
index e3a60e0be4f7..fe49dd9effdd 100644
--- a/sys/i386/linux/linux_support.s
+++ b/sys/i386/linux/linux_support.s
@@ -31,7 +31,7 @@
#include "linux_assym.h" /* system definitions */
#include <machine/asmacros.h> /* miscellaneous asm macros */
-#include "assym.s"
+#include "assym.inc"
futex_fault_decx:
movl PCPU(CURPCB),%ecx