diff options
author | Ian Moffett <ian@osmora.org> | 2025-04-17 00:47:03 -0400 |
---|---|---|
committer | Ian Moffett <ian@osmora.org> | 2025-04-17 00:47:03 -0400 |
commit | 39889716282dc6d3e5259cf61e8a36eaab7b497c (patch) | |
tree | 0ff1641cef3bdc67a086c8c0d1ad9d47017be51c /sys/include/dev | |
parent | be63b6e102a617a048160c42c84ef46fa38e6aad (diff) |
kernel: acpi: Add acpi_oemid()
acpi_oemid() can be useful for knowing the vendor of the current
machine.
Signed-off-by: Ian Moffett <ian@osmora.org>
Diffstat (limited to 'sys/include/dev')
-rw-r--r-- | sys/include/dev/acpi/acpi.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sys/include/dev/acpi/acpi.h b/sys/include/dev/acpi/acpi.h index 3e04d5d..9cd6b87 100644 --- a/sys/include/dev/acpi/acpi.h +++ b/sys/include/dev/acpi/acpi.h @@ -30,6 +30,7 @@ #ifndef _ACPI_H_ #define _ACPI_H_ +const char *acpi_oemid(void); void *acpi_query(const char *query); void acpi_init(void); |