From f4a57c0c43963d6b55ed467ab6f529ad82b02749 Mon Sep 17 00:00:00 2001 From: ian Date: Mon, 17 Jul 2023 02:17:16 +0000 Subject: kernel/acpi: Improve modularity git-svn-id: https://svn.vegaa.systems/svn/vega-Vega/trunk@17 a8a8aea2-181d-ee11-89e8-15fd0e089fc4 --- sys/firmware/acpi/acpi_init.c | 15 +++------------ 1 file changed, 3 insertions(+), 12 deletions(-) (limited to 'sys/firmware/acpi/acpi_init.c') 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 -#include #include #include #include @@ -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 -- cgit v1.2.3