diff options
author | Ian Moffett <ian@osmora.org> | 2025-05-17 21:52:20 -0400 |
---|---|---|
committer | Ian Moffett <ian@osmora.org> | 2025-05-17 21:52:20 -0400 |
commit | c1ce3dc7009960fa6ad12328aec7504f80464f6b (patch) | |
tree | 4726d378faba6b0938bf573def1dee03c2835c08 /sys | |
parent | dff97276e760d53b53a6b6a57247a5afde4e1da5 (diff) |
kernel/amd64: ioapic: Do not include acpi/tables.h
Signed-off-by: Ian Moffett <ian@osmora.org>
Diffstat (limited to 'sys')
-rw-r--r-- | sys/include/arch/amd64/ioapic.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/include/arch/amd64/ioapic.h b/sys/include/arch/amd64/ioapic.h index c11a85c..4cae800 100644 --- a/sys/include/arch/amd64/ioapic.h +++ b/sys/include/arch/amd64/ioapic.h @@ -31,7 +31,8 @@ #define _MACHINE_IOAPIC_H_ #include <sys/types.h> -#include <dev/acpi/tables.h> + +struct ioapic; void ioapic_init(struct ioapic *p); void ioapic_gsi_mask(uint8_t gsi); |