1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 05:37:35 +00:00

Kernel: Rename UHCIController::{spawn_port_proc => spawn_port_process}

There's no need to use this non-standard shorthand mnemonic.
(This commit also removes the unimplemented do_debug_transfer while
we're here.)
This commit is contained in:
Idan Horowitz 2022-01-28 15:55:55 +02:00
parent fa7ae7288b
commit ad7d4d9be1
2 changed files with 3 additions and 5 deletions

View file

@ -42,9 +42,7 @@ public:
virtual ErrorOr<void> reset() override;
virtual ErrorOr<void> stop() override;
virtual ErrorOr<void> start() override;
void spawn_port_proc();
void do_debug_transfer();
void spawn_port_process();
virtual ErrorOr<size_t> submit_control_transfer(Transfer& transfer) override;