diff options
author | ian <ian> | 2023-07-17 02:17:16 +0000 |
---|---|---|
committer | ian <ian> | 2023-07-17 02:17:16 +0000 |
commit | f4a57c0c43963d6b55ed467ab6f529ad82b02749 (patch) | |
tree | 41f82a1251319789c8fa89a88cf7e53e0b78316e /sys/firmware/acpi/acpi_init.c | |
parent | 7b56685a59a86d97cb6dcb8e0dda0a1141b11b91 (diff) |
kernel/acpi: Improve modularity
git-svn-id: https://svn.vegaa.systems/svn/vega-Vega/trunk@17 a8a8aea2-181d-ee11-89e8-15fd0e089fc4
Diffstat (limited to 'sys/firmware/acpi/acpi_init.c')
-rw-r--r-- | sys/firmware/acpi/acpi_init.c | 15 |
1 files changed, 3 insertions, 12 deletions
diff --git a/sys/firmware/acpi/acpi_init.c b/sys/firmware/acpi/acpi_init.c index fd23ada..1c8bd91 100644 --- a/sys/firmware/acpi/acpi_init.c +++ b/sys/firmware/acpi/acpi_init.c @@ -30,7 +30,6 @@ /* $Id$ */ #include <firmware/acpi/acpi.h> -#include <firmware/acpi/tables.h> #include <sys/limine.h> #include <sys/syslog.h> #include <sys/cdefs.h> @@ -70,18 +69,10 @@ acpi_print_oemid(const char *type, char oemid[OEMID_SIZE]) kprintf("\n"); } -static bool -acpi_is_checksum_valid(struct acpi_header *hdr) +struct acpi_root_sdt * +acpi_get_root_sdt(void) { - uint8_t sum; - - sum = 0; - for (int i = 0; i < hdr->length; ++i) { - sum += ((char *)hdr)[i]; - } - - /* Sum of table (from header to end) must be zero!! */ - return sum == 0; + return root_sdt; } void |