summaryrefslogtreecommitdiff
path: root/Kernel/Bus/USB
diff options
context:
space:
mode:
authorBrian Gianforcaro <bgianf@serenityos.org>2022-06-04 21:44:48 -0700
committerLinus Groh <mail@linusgroh.de>2022-06-05 14:09:44 +0100
commit6b85b358f8fa7ab0c945202cb9c7a8c3d348e7b1 (patch)
treeb46a4e73e93c8d841c41e618c62835bdd2906264 /Kernel/Bus/USB
parent5fd3716e2fbb885e1623aac1f9fea98bd972107a (diff)
downloadserenity-6b85b358f8fa7ab0c945202cb9c7a8c3d348e7b1.zip
Kernel: Unify Kernel task names for consistency
This change unifies the naming convention for kernel tasks. The goal of this change is to: - Make the task names more descriptive, so users can more easily understand their purpose in System Monitor. - Unify the naming convention so they are consistent.
Diffstat (limited to 'Kernel/Bus/USB')
-rw-r--r--Kernel/Bus/USB/UHCI/UHCIController.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Kernel/Bus/USB/UHCI/UHCIController.cpp b/Kernel/Bus/USB/UHCI/UHCIController.cpp
index aa35a8e0c4..8ea28e06e8 100644
--- a/Kernel/Bus/USB/UHCI/UHCIController.cpp
+++ b/Kernel/Bus/USB/UHCI/UHCIController.cpp
@@ -509,7 +509,7 @@ size_t UHCIController::poll_transfer_queue(QueueHead& transfer_queue)
ErrorOr<void> UHCIController::spawn_port_process()
{
RefPtr<Thread> usb_hotplug_thread;
- (void)Process::create_kernel_process(usb_hotplug_thread, TRY(KString::try_create("UHCI hotplug")), [&] {
+ (void)Process::create_kernel_process(usb_hotplug_thread, TRY(KString::try_create("UHCI Hot Plug Task")), [&] {
for (;;) {
if (m_root_hub)
m_root_hub->check_for_port_updates();