aboutsummaryrefslogtreecommitdiff
path: root/sys/arch/amd64/gdt.c
diff options
context:
space:
mode:
Diffstat (limited to 'sys/arch/amd64/gdt.c')
-rw-r--r--sys/arch/amd64/gdt.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/arch/amd64/gdt.c b/sys/arch/amd64/gdt.c
index 446306a..cb32837 100644
--- a/sys/arch/amd64/gdt.c
+++ b/sys/arch/amd64/gdt.c
@@ -31,7 +31,7 @@
#include <machine/gdt.h>
-struct gdt_entry g_dmmy_gdt[256] = {
+struct gdt_entry g_gdt[256] = {
/* Null */
{0},
@@ -76,7 +76,7 @@ struct gdt_entry g_dmmy_gdt[256] = {
},
};
-struct gdtr g_early_gdtr = {
+struct gdtr g_gdtr = {
.limit = sizeof(struct gdt_entry) * 256 - 1,
- .offset = (uintptr_t)&g_dmmy_gdt[0]
+ .offset = (uintptr_t)&g_gdt[0]
};