aboutsummaryrefslogtreecommitdiff
path: root/kapi
diff options
context:
space:
mode:
authorFelix Morgner <felix.morgner@ost.ch>2026-07-15 16:28:50 +0200
committerFelix Morgner <felix.morgner@ost.ch>2026-07-15 16:28:50 +0200
commit320f2b54652b60eb68662209a6537301adc51dd0 (patch)
treec8339057eee73389ba6840318e7946e45854cc5e /kapi
parente4ab0886e4f9fcd81b226dcab2f09d131d2f039e (diff)
downloadkernel-320f2b54652b60eb68662209a6537301adc51dd0.tar.xz
kernel-320f2b54652b60eb68662209a6537301adc51dd0.zip
kapi/devices: clean up some names
Diffstat (limited to 'kapi')
-rw-r--r--kapi/kapi/devices/cpu.hpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/kapi/kapi/devices/cpu.hpp b/kapi/kapi/devices/cpu.hpp
index a39580b4..5f4228cc 100644
--- a/kapi/kapi/devices/cpu.hpp
+++ b/kapi/kapi/devices/cpu.hpp
@@ -15,8 +15,7 @@ namespace kapi::devices
//! A virtual CPU Core to host all core local devices.
struct core final : kapi::devices::bus
{
- explicit core(std::size_t major_number, std::size_t minor_number, std::uint64_t index, std::uint64_t hardware_id,
- bool is_bsp);
+ explicit core(std::size_t major, std::size_t minor, std::uint64_t index, std::uint64_t hardware_id, bool is_bsp);
[[nodiscard]] auto hardware_id() const -> std::uint64_t;
[[nodiscard]] auto is_bsp() const -> bool;