diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/acpi.h | 8 | ||||
-rw-r--r-- | include/shim.h | 4 |
2 files changed, 4 insertions, 8 deletions
diff --git a/include/acpi.h b/include/acpi.h index 99a446c..4c5c7b1 100644 --- a/include/acpi.h +++ b/include/acpi.h @@ -1,13 +1,5 @@ #pragma once -enum acpi_status { - ACPI_SUCCESS = 0, - ACPI_FAILURE = -1, - ACPI_MALFORMED_TABLE = -2, - ACPI_OLD_VERSION = -4, - ACPI_S5_PARSE_ERROR = -5, -}; - /** * Loads the ACPI tables * https://en.wikipedia.org/wiki/ACPI diff --git a/include/shim.h b/include/shim.h index a0f0156..f3835ba 100644 --- a/include/shim.h +++ b/include/shim.h @@ -2,6 +2,10 @@ #include <memory.h> +#define CMDLINE_MAX 32 + struct boot_info { struct memory_map *map; + void *acpi_table; + char cmdline[CMDLINE_MAX]; }; |