1 2 3 4 5 6 7 8 9 10 11 12 13 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