diff options
Diffstat (limited to 'kapi')
| -rw-r--r-- | kapi/kapi/devices/bus.hpp | 4 |
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; |
