diff options
| author | Felix Morgner <felix.morgner@ost.ch> | 2026-07-24 19:33:03 +0200 |
|---|---|---|
| committer | Felix Morgner <felix.morgner@ost.ch> | 2026-07-24 19:33:03 +0200 |
| commit | 40c91984152a238351529d2611fe627040f6a618 (patch) | |
| tree | 74a6d0ec2dcf577fed3ee6568077d1b90c306887 /kernel/kapi/boot_module/bus.cpp | |
| parent | 3d09b0bd2c35740b34b87c1400e0a3d93647a5d2 (diff) | |
| download | kernel-40c91984152a238351529d2611fe627040f6a618.tar.xz kernel-40c91984152a238351529d2611fe627040f6a618.zip | |
kapi: rename boot_module to module
Diffstat (limited to 'kernel/kapi/boot_module/bus.cpp')
| -rw-r--r-- | kernel/kapi/boot_module/bus.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/kernel/kapi/boot_module/bus.cpp b/kernel/kapi/boot_module/bus.cpp index 88f2cda3..95264d00 100644 --- a/kernel/kapi/boot_module/bus.cpp +++ b/kernel/kapi/boot_module/bus.cpp @@ -28,7 +28,7 @@ namespace kapi::boot_modules return false; } - boot_module_device::boot_module_device(std::size_t index, boot_module const & module) + boot_module_device::boot_module_device(std::size_t index, struct module const & module) : kapi::devices::device{kstd::format("boot_module{}", index)} , m_module(module) {} @@ -38,7 +38,7 @@ namespace kapi::boot_modules return m_module.name; } - auto boot_module_device::module() const -> boot_modules::boot_module const & + auto boot_module_device::module() const -> boot_modules::module const & { return m_module; } |
