diff options
Diffstat (limited to 'Kernel/Bus/USB/UHCIController.h')
-rw-r--r-- | Kernel/Bus/USB/UHCIController.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Kernel/Bus/USB/UHCIController.h b/Kernel/Bus/USB/UHCIController.h index 7adecd67b4..8594c0f024 100644 --- a/Kernel/Bus/USB/UHCIController.h +++ b/Kernel/Bus/USB/UHCIController.h @@ -90,9 +90,9 @@ private: QueueHead* m_bulk_qh; QueueHead* m_dummy_qh; // Needed for PIIX4 hack - OwnPtr<Region> m_framelist; - OwnPtr<Region> m_qh_pool; - OwnPtr<Region> m_td_pool; + OwnPtr<Memory::Region> m_framelist; + OwnPtr<Memory::Region> m_qh_pool; + OwnPtr<Memory::Region> m_td_pool; Array<RefPtr<USB::Device>, 2> m_devices; // Devices connected to the root ports (of which there are two) }; |