diff options
author | trimill <trimill@trimillxyz.org> | 2024-02-03 00:37:02 -0500 |
---|---|---|
committer | trimill <trimill@trimillxyz.org> | 2024-02-03 00:45:47 -0500 |
commit | 6d7a563d368241cb074cb356dd2fafa8c6d7115a (patch) | |
tree | 1046e13cc4580d3b75a614652cbdd3ab941e7da2 /src/arch/amd64/acpi.c | |
parent | pretty colors (diff) | |
download | corn-6d7a563d368241cb074cb356dd2fafa8c6d7115a.tar.gz corn-6d7a563d368241cb074cb356dd2fafa8c6d7115a.tar.bz2 corn-6d7a563d368241cb074cb356dd2fafa8c6d7115a.zip |
improved debugger, refactored
Diffstat (limited to 'src/arch/amd64/acpi.c')
-rw-r--r-- | src/arch/amd64/acpi.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/arch/amd64/acpi.c b/src/arch/amd64/acpi.c index d476ac8..e262a99 100644 --- a/src/arch/amd64/acpi.c +++ b/src/arch/amd64/acpi.c @@ -6,7 +6,6 @@ #include "bindings.h" #include "memory.h" -#include "serial.h" /* global state, idk a better way rn */ struct acpi_state state; @@ -208,7 +207,7 @@ static void *acpi_find_table_rsdt(struct rsdt *rsdt, const char *identifier, int memcpy(buf, h->signature, 4); buf[4] = '\n'; buf[5] = '\0'; - serial_out_str(buf); + kputs(buf); if (!strncmp(h->signature, identifier, ident_len)) return (void *)h; } |