summaryrefslogtreecommitdiff
path: root/Kernel/Bus/USB/USBManagement.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Kernel/Bus/USB/USBManagement.cpp')
-rw-r--r--Kernel/Bus/USB/USBManagement.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Kernel/Bus/USB/USBManagement.cpp b/Kernel/Bus/USB/USBManagement.cpp
index 04eb14aded..144d4c806c 100644
--- a/Kernel/Bus/USB/USBManagement.cpp
+++ b/Kernel/Bus/USB/USBManagement.cpp
@@ -34,7 +34,7 @@ UNMAP_AFTER_INIT void USBManagement::enumerate_controllers()
if (kernel_command_line().disable_uhci_controller())
return;
- if (auto uhci_controller_or_error = UHCIController::try_to_initialize(address); !uhci_controller_or_error.is_error())
+ if (auto uhci_controller_or_error = UHCIController::try_to_initialize(device_identifier); !uhci_controller_or_error.is_error())
m_controllers.append(uhci_controller_or_error.release_value());
return;