From d7e2dc844666cf3f488fd69409640f1f8a9844d4 Mon Sep 17 00:00:00 2001 From: Ian Moffett Date: Fri, 21 Feb 2025 13:15:10 -0500 Subject: kernel: Update kernel log style Kernel logs must now all be lowercase for consistency. A new style called Peripheral Description Notation (PDN) has also been introduced to describe devices. Signed-off-by: Ian Moffett --- sys/include/arch/amd64/ioapic.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'sys/include/arch/amd64/ioapic.h') diff --git a/sys/include/arch/amd64/ioapic.h b/sys/include/arch/amd64/ioapic.h index beac473..c11a85c 100644 --- a/sys/include/arch/amd64/ioapic.h +++ b/sys/include/arch/amd64/ioapic.h @@ -31,8 +31,9 @@ #define _MACHINE_IOAPIC_H_ #include +#include -void ioapic_init(void *base); +void ioapic_init(struct ioapic *p); void ioapic_gsi_mask(uint8_t gsi); void ioapic_gsi_unmask(uint8_t gsi); -- cgit v1.2.3