1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 04:47:34 +00:00

Kernel/USB: Rename get_interfaces to something more sensible

This name was misleading, as it wasn't really "getting" anything. It has
hence been renamed to `enumerate_interfaces` to reflect what it's
actually doing.
This commit is contained in:
Jesse Buhagiar 2022-05-30 22:54:37 +10:00 committed by Andreas Kling
parent 29f891bb54
commit a1ed9d3c60
3 changed files with 3 additions and 3 deletions

View file

@ -35,7 +35,7 @@ public:
Vector<USBInterface> const& interfaces() const { return m_interfaces; }
ErrorOr<void> get_interfaces();
ErrorOr<void> enumerate_interfaces();
private:
Device& m_device; // Reference to the device linked to this configuration