From 67fbca715dc55fc5596c5ef8aa244953443139b1 Mon Sep 17 00:00:00 2001 From: Arron Nelson Date: Wed, 27 Sep 2023 10:13:27 -0700 Subject: [PATCH] Removed Redeclaration Removed redeclaration of `isr_regs` in `isr.c`. --- src/kernel/arch/x86/isr.c | 6 ------ 1 file changed, 6 deletions(-) diff --git a/src/kernel/arch/x86/isr.c b/src/kernel/arch/x86/isr.c index b10064d..0bee369 100644 --- a/src/kernel/arch/x86/isr.c +++ b/src/kernel/arch/x86/isr.c @@ -11,12 +11,6 @@ enum SERIAL_PORT_INTERRUPT = 0x24 }; -struct isr_regs -{ - // Define the structure of the isr_regs here - // ... -}; - // ISR table void (*isr_table[256])(struct isr_regs *regs);