diff options
Diffstat (limited to 'sys/include/dev/acpi/acpi.h')
-rw-r--r-- | sys/include/dev/acpi/acpi.h | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/sys/include/dev/acpi/acpi.h b/sys/include/dev/acpi/acpi.h index 4c5b7d9..5108748 100644 --- a/sys/include/dev/acpi/acpi.h +++ b/sys/include/dev/acpi/acpi.h @@ -1,5 +1,5 @@ /* - * Copyright (c) 2023-2024 Ian Marco Moffett and the Osmora Team. + * Copyright (c) 2023-2025 Ian Marco Moffett and the Osmora Team. * All rights reserved. * * Redistribution and use in source and binary forms, with or without @@ -30,7 +30,15 @@ #ifndef _ACPI_H_ #define _ACPI_H_ +#include <sys/types.h> + +#define ACPI_SLEEP_S5 0x00000000 + +const char *acpi_oemid(void); void *acpi_query(const char *query); + +paddr_t acpi_rsdp(void); +int acpi_sleep(int type); void acpi_init(void); #endif /* !_ACPI_H_ */ |