aboutsummaryrefslogtreecommitdiff
path: root/kapi
diff options
context:
space:
mode:
authorFelix Morgner <felix.morgner@ost.ch>2026-04-16 09:26:52 +0200
committerFelix Morgner <felix.morgner@ost.ch>2026-04-16 09:26:52 +0200
commit252df23b061b2bf54206da73e41faca600541ccc (patch)
treef21852c364287ac6dfbf5e90456b63933b50f4f9 /kapi
parent27c654f3f0a069113b6abb70817cfe2c5096711e (diff)
downloadteachos-252df23b061b2bf54206da73e41faca600541ccc.tar.xz
teachos-252df23b061b2bf54206da73e41faca600541ccc.zip
acpi: introduce VLA table
Diffstat (limited to 'kapi')
-rw-r--r--kapi/include/kapi/acpi.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/kapi/include/kapi/acpi.hpp b/kapi/include/kapi/acpi.hpp
index 2835496..b607ee0 100644
--- a/kapi/include/kapi/acpi.hpp
+++ b/kapi/include/kapi/acpi.hpp
@@ -23,7 +23,7 @@ namespace kapi::acpi
//!
//! @param signature The signature of the table to get.
//! @return A pointer to the table if found, nullptr otherwise.
- auto get_table(std::string_view signature) -> kstd::observer_ptr<::acpi::sdt const>;
+ auto get_table(std::string_view signature) -> kstd::observer_ptr<::acpi::table_header const>;
//! Get a type-cast pointer to an ACPI table by its signature.
//!