diff options
author | mjz19910 <matthias291999@gmail.com> | 2022-01-06 07:07:15 -0700 |
---|---|---|
committer | Linus Groh <mail@linusgroh.de> | 2022-01-07 10:56:59 +0100 |
commit | 3102d8e160bd61181dce395b425aea99e8381632 (patch) | |
tree | a71464b934ddd5a302c292bac45767e18a9bc217 /Kernel/Interrupts/PIC.cpp | |
parent | 6bf91d00eff87b8904239db5126165485741d731 (diff) | |
download | serenity-3102d8e160bd61181dce395b425aea99e8381632.zip |
Everywhere: Fix many spelling errors
Diffstat (limited to 'Kernel/Interrupts/PIC.cpp')
-rw-r--r-- | Kernel/Interrupts/PIC.cpp | 4 |
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); |