summaryrefslogtreecommitdiff
path: root/Kernel/Interrupts/PIC.cpp
diff options
context:
space:
mode:
authormjz19910 <matthias291999@gmail.com>2022-01-06 07:07:15 -0700
committerLinus Groh <mail@linusgroh.de>2022-01-07 10:56:59 +0100
commit3102d8e160bd61181dce395b425aea99e8381632 (patch)
treea71464b934ddd5a302c292bac45767e18a9bc217 /Kernel/Interrupts/PIC.cpp
parent6bf91d00eff87b8904239db5126165485741d731 (diff)
downloadserenity-3102d8e160bd61181dce395b425aea99e8381632.zip
Everywhere: Fix many spelling errors
Diffstat (limited to 'Kernel/Interrupts/PIC.cpp')
-rw-r--r--Kernel/Interrupts/PIC.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/Kernel/Interrupts/PIC.cpp b/Kernel/Interrupts/PIC.cpp
index 3f4524e040..b8f29cdf64 100644
--- a/Kernel/Interrupts/PIC.cpp
+++ b/Kernel/Interrupts/PIC.cpp
@@ -161,7 +161,7 @@ void PIC::remap(u8 offset)
IO::out8(PIC0_CTL, ICW1_INIT | ICW1_ICW4);
IO::out8(PIC1_CTL, ICW1_INIT | ICW1_ICW4);
- /* ICW2 (upper 5 bits specify ISR indices, lower 3 idunno) */
+ /* ICW2 (upper 5 bits specify ISR indices, lower 3 don't specify anything) */
IO::out8(PIC0_CMD, offset);
IO::out8(PIC1_CMD, offset + 0x08);
@@ -188,7 +188,7 @@ UNMAP_AFTER_INIT void PIC::initialize()
IO::out8(PIC0_CTL, ICW1_INIT | ICW1_ICW4);
IO::out8(PIC1_CTL, ICW1_INIT | ICW1_ICW4);
- /* ICW2 (upper 5 bits specify ISR indices, lower 3 idunno) */
+ /* ICW2 (upper 5 bits specify ISR indices, lower 3 don't specify anything) */
IO::out8(PIC0_CMD, IRQ_VECTOR_BASE);
IO::out8(PIC1_CMD, IRQ_VECTOR_BASE + 0x08);