blob: 748e0a6a8b2ca4353481a4c26608794f9a0035bc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#include <kapi/devices.hpp>
#include <arch/devices/init.hpp>
#include <arch/drivers/init.hpp>
namespace kapi::devices
{
auto init_platform_drivers() -> void
{
arch::drivers::init_legacy_drivers();
}
auto init_platform_devices() -> void
{
arch::devices::init_acpi_devices();
arch::devices::init_legacy_devices();
}
} // namespace kapi::devices
|