aboutsummaryrefslogtreecommitdiff
path: root/kapi
diff options
context:
space:
mode:
authorFelix Morgner <felix.morgner@ost.ch>2026-07-15 16:00:23 +0200
committerFelix Morgner <felix.morgner@ost.ch>2026-07-15 16:00:23 +0200
commit81392dc08ab1a165558d30cb068d62f56752693b (patch)
tree06ab8091c1132d96366aaeeb26016414f842214b /kapi
parent014e52494a73ce80d9e4c47e4eab676213c25a03 (diff)
downloadkernel-81392dc08ab1a165558d30cb068d62f56752693b.tar.xz
kernel-81392dc08ab1a165558d30cb068d62f56752693b.zip
kapi: rename bus::probe to enumerate
Diffstat (limited to 'kapi')
-rw-r--r--kapi/kapi/devices/bus.hpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/kapi/kapi/devices/bus.hpp b/kapi/kapi/devices/bus.hpp
index 8e2b5acf..c4777616 100644
--- a/kapi/kapi/devices/bus.hpp
+++ b/kapi/kapi/devices/bus.hpp
@@ -44,10 +44,10 @@ namespace kapi::devices
[[nodiscard]] auto children() const -> kstd::vector<kstd::observer_ptr<device>> const &;
protected:
- //! Probe the bus hardware state.
+ //! Enumerate the devices on the bus.
//!
//! @return true iff. the bus hardware is healthy, false otherwise.
- auto virtual probe() -> bool;
+ auto virtual enumerate() -> bool;
private:
kstd::vector<kstd::unique_ptr<device>> m_devices;