1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 04:17: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

@ -76,7 +76,7 @@ ErrorOr<void> UHCIController::initialize()
dmesgln("UHCI: I/O base {}", m_io_base);
dmesgln("UHCI: Interrupt line: {}", interrupt_number());
spawn_port_proc();
spawn_port_process();
TRY(reset());
return start();
@ -464,7 +464,7 @@ size_t UHCIController::poll_transfer_queue(QueueHead& transfer_queue)
return transfer_size;
}
void UHCIController::spawn_port_proc()
void UHCIController::spawn_port_process()
{
RefPtr<Thread> usb_hotplug_thread;