diff options
author | Idan Horowitz <idan.horowitz@gmail.com> | 2022-04-01 20:58:27 +0300 |
---|---|---|
committer | Linus Groh <mail@linusgroh.de> | 2022-04-01 21:24:45 +0100 |
commit | 086969277e74d8ba065bf8145d3aeb0dec0bfee5 (patch) | |
tree | 02b3699a66735ef806d9b46353491f18f8e4e7b4 /Kernel/Bus/USB/UHCI | |
parent | 0376c127f6e98e03607700d0b3f5154b7014b2f8 (diff) | |
download | serenity-086969277e74d8ba065bf8145d3aeb0dec0bfee5.zip |
Everywhere: Run clang-format
Diffstat (limited to 'Kernel/Bus/USB/UHCI')
-rw-r--r-- | Kernel/Bus/USB/UHCI/UHCIController.cpp | 2 | ||||
-rw-r--r-- | Kernel/Bus/USB/UHCI/UHCIController.h | 2 | ||||
-rw-r--r-- | Kernel/Bus/USB/UHCI/UHCIDescriptorTypes.h | 8 |
3 files changed, 6 insertions, 6 deletions
diff --git a/Kernel/Bus/USB/UHCI/UHCIController.cpp b/Kernel/Bus/USB/UHCI/UHCIController.cpp index f478cd6622..488e3b59c4 100644 --- a/Kernel/Bus/USB/UHCI/UHCIController.cpp +++ b/Kernel/Bus/USB/UHCI/UHCIController.cpp @@ -476,7 +476,7 @@ ErrorOr<void> UHCIController::spawn_port_process() return {}; } -bool UHCIController::handle_irq(const RegisterState&) +bool UHCIController::handle_irq(RegisterState const&) { u32 status = read_usbsts(); diff --git a/Kernel/Bus/USB/UHCI/UHCIController.h b/Kernel/Bus/USB/UHCI/UHCIController.h index 0cd243cc92..66279b510e 100644 --- a/Kernel/Bus/USB/UHCI/UHCIController.h +++ b/Kernel/Bus/USB/UHCI/UHCIController.h @@ -71,7 +71,7 @@ private: void write_portsc1(u16 value) { m_io_base.offset(0x10).out(value); } void write_portsc2(u16 value) { m_io_base.offset(0x12).out(value); } - virtual bool handle_irq(const RegisterState&) override; + virtual bool handle_irq(RegisterState const&) override; ErrorOr<void> create_structures(); void setup_schedule(); diff --git a/Kernel/Bus/USB/UHCI/UHCIDescriptorTypes.h b/Kernel/Bus/USB/UHCI/UHCIDescriptorTypes.h index 3f95302b11..8cae746922 100644 --- a/Kernel/Bus/USB/UHCI/UHCIDescriptorTypes.h +++ b/Kernel/Bus/USB/UHCI/UHCIDescriptorTypes.h @@ -185,11 +185,11 @@ struct alignas(16) TransferDescriptor final { // FIXME: For the love of God, use AK SMART POINTERS PLEASE!! TransferDescriptor* next_td() { return m_next_td; } - const TransferDescriptor* next_td() const { return m_next_td; } + TransferDescriptor const* next_td() const { return m_next_td; } void set_next_td(TransferDescriptor* td) { m_next_td = td; } TransferDescriptor* prev_td() { return m_prev_td; } - const TransferDescriptor* prev_td() const { return m_prev_td; } + TransferDescriptor const* prev_td() const { return m_prev_td; } void set_previous_td(TransferDescriptor* td) { m_prev_td = td; } void insert_next_transfer_descriptor(TransferDescriptor* td) @@ -274,11 +274,11 @@ struct alignas(16) QueueHead { // FIXME: For the love of God, use AK SMART POINTERS PLEASE!! QueueHead* next_qh() { return m_next_qh; } - const QueueHead* next_qh() const { return m_next_qh; } + QueueHead const* next_qh() const { return m_next_qh; } void set_next_qh(QueueHead* qh) { m_next_qh = qh; } QueueHead* prev_qh() { return m_prev_qh; } - const QueueHead* prev_qh() const { return m_prev_qh; } + QueueHead const* prev_qh() const { return m_prev_qh; } void set_previous_qh(QueueHead* qh) { m_prev_qh = qh; |