aboutsummaryrefslogtreecommitdiff
path: root/kernel/boot/interrupts
diff options
context:
space:
mode:
authorRaghuram Subramani <raghus2247@gmail.com>2025-09-16 15:21:37 -0400
committerRaghuram Subramani <raghus2247@gmail.com>2025-09-16 15:21:37 -0400
commit9b52d6ba404a7daa7bffbeb37c65d3e2eacf7fac (patch)
tree3a5ecf50f280492abead078cca2ec78c2bccbc29 /kernel/boot/interrupts
parent0af76d3252e9e46c2e7b76e67e37e399d7a7904d (diff)
misc: lowercase printk speaker
Diffstat (limited to 'kernel/boot/interrupts')
-rw-r--r--kernel/boot/interrupts/interrupts.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/kernel/boot/interrupts/interrupts.cc b/kernel/boot/interrupts/interrupts.cc
index dd96214..b3f13a2 100644
--- a/kernel/boot/interrupts/interrupts.cc
+++ b/kernel/boot/interrupts/interrupts.cc
@@ -29,17 +29,17 @@ void
initialize()
{
load_idt();
- printk("\nInterrupts", "IDT Loaded.");
+ printk("\ninterrupts", "IDT Loaded.");
enable();
- printk("Interrupts", "Initialized.");
+ printk("interrupts", "Initialized.");
}
void
enable(void)
{
if (!idt_loaded()) {
- printk("Interrupts", "Attempt to enable before IDT load.");
+ printk("interrupts", "Attempt to enable before IDT load.");
ASSERT_NOT_REACHED();
}