diff options
author | sigsegv7 <ian@vegaa.systems> | 2023-09-12 02:33:31 -0400 |
---|---|---|
committer | sigsegv7 <ian@vegaa.systems> | 2023-09-12 02:33:31 -0400 |
commit | 71ab2bb3ed3aa8f12229e1c55fcc1f885a82f7e2 (patch) | |
tree | b3008c8db617b9799d493703dd814d8b5cfb524c /sys/arch | |
parent | 153baecaf150112fc06690cb5faad880e8bf5083 (diff) |
project-wide: migrate to git
Diffstat (limited to 'sys/arch')
-rw-r--r-- | sys/arch/amd64/gdt.c | 2 | ||||
-rw-r--r-- | sys/arch/amd64/idt.c | 2 | ||||
-rw-r--r-- | sys/arch/amd64/machdep.c | 2 | ||||
-rw-r--r-- | sys/arch/amd64/trap.S | 2 | ||||
-rw-r--r-- | sys/arch/amd64/trap.c | 2 |
5 files changed, 0 insertions, 10 deletions
diff --git a/sys/arch/amd64/gdt.c b/sys/arch/amd64/gdt.c index cb32837..b1f3220 100644 --- a/sys/arch/amd64/gdt.c +++ b/sys/arch/amd64/gdt.c @@ -27,8 +27,6 @@ * POSSIBILITY OF SUCH DAMAGE. */ -/* $Id$ */ - #include <machine/gdt.h> struct gdt_entry g_gdt[256] = { diff --git a/sys/arch/amd64/idt.c b/sys/arch/amd64/idt.c index 46eb1f8..05ec7cb 100644 --- a/sys/arch/amd64/idt.c +++ b/sys/arch/amd64/idt.c @@ -27,8 +27,6 @@ * POSSIBILITY OF SUCH DAMAGE. */ -/* $Id$ */ - #include <machine/idt.h> static struct idt_entry idt[256]; diff --git a/sys/arch/amd64/machdep.c b/sys/arch/amd64/machdep.c index 902dd5e..97f17a7 100644 --- a/sys/arch/amd64/machdep.c +++ b/sys/arch/amd64/machdep.c @@ -27,8 +27,6 @@ * POSSIBILITY OF SUCH DAMAGE. */ -/* $Id$ */ - #include <sys/machdep.h> #include <sys/cdefs.h> #include <machine/trap.h> diff --git a/sys/arch/amd64/trap.S b/sys/arch/amd64/trap.S index 31792c5..d10c0b3 100644 --- a/sys/arch/amd64/trap.S +++ b/sys/arch/amd64/trap.S @@ -27,8 +27,6 @@ * POSSIBILITY OF SUCH DAMAGE. */ -/* $Id$ */ - #include <machine/frame.h> #include <machine/trap.h> diff --git a/sys/arch/amd64/trap.c b/sys/arch/amd64/trap.c index 93ae17c..af61d0f 100644 --- a/sys/arch/amd64/trap.c +++ b/sys/arch/amd64/trap.c @@ -27,8 +27,6 @@ * POSSIBILITY OF SUCH DAMAGE. */ -/* $Id$ */ - #include <machine/trap.h> #include <sys/cdefs.h> #include <sys/spinlock.h> |