diff options
Diffstat (limited to 'arch/x86_64/kapi/devices.cpp')
| -rw-r--r-- | arch/x86_64/kapi/devices.cpp | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/arch/x86_64/kapi/devices.cpp b/arch/x86_64/kapi/devices.cpp new file mode 100644 index 0000000..f188c92 --- /dev/null +++ b/arch/x86_64/kapi/devices.cpp @@ -0,0 +1,14 @@ +#include <kapi/devices.hpp> + +#include <arch/devices/init.hpp> + +namespace kapi::devices +{ + + auto init_platform_devices() -> void + { + arch::devices::init_acpi_devices(); + arch::devices::init_legacy_devices(); + } + +} // namespace kapi::devices
\ No newline at end of file |
