summaryrefslogtreecommitdiff
path: root/Kernel/Interrupts/APIC.h
diff options
context:
space:
mode:
Diffstat (limited to 'Kernel/Interrupts/APIC.h')
-rw-r--r--Kernel/Interrupts/APIC.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/Kernel/Interrupts/APIC.h b/Kernel/Interrupts/APIC.h
index adcc64f6b8..f64bca7844 100644
--- a/Kernel/Interrupts/APIC.h
+++ b/Kernel/Interrupts/APIC.h
@@ -102,13 +102,13 @@ private:
bool m_is_x2 { false };
static PhysicalAddress get_base();
- void set_base(const PhysicalAddress& base);
+ void set_base(PhysicalAddress const& base);
void write_register(u32 offset, u32 value);
u32 read_register(u32 offset);
void set_lvt(u32 offset, u8 interrupt);
void set_siv(u32 offset, u8 interrupt);
void wait_for_pending_icr();
- void write_icr(const ICRReg& icr);
+ void write_icr(ICRReg const& icr);
void do_boot_aps();
};