diff options
Diffstat (limited to 'sys/include/arch/amd64/ioapic.h')
-rw-r--r-- | sys/include/arch/amd64/ioapic.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/sys/include/arch/amd64/ioapic.h b/sys/include/arch/amd64/ioapic.h index 4a0479f..4cae800 100644 --- a/sys/include/arch/amd64/ioapic.h +++ b/sys/include/arch/amd64/ioapic.h @@ -1,5 +1,5 @@ /* - * Copyright (c) 2023-2024 Ian Marco Moffett and the Osmora Team. + * Copyright (c) 2023-2025 Ian Marco Moffett and the Osmora Team. * All rights reserved. * * Redistribution and use in source and binary forms, with or without @@ -32,7 +32,9 @@ #include <sys/types.h> -void ioapic_init(void *base); +struct ioapic; + +void ioapic_init(struct ioapic *p); void ioapic_gsi_mask(uint8_t gsi); void ioapic_gsi_unmask(uint8_t gsi); |