diff options
author | Ian Moffett <ian@osmora.org> | 2023-12-19 22:08:43 -0500 |
---|---|---|
committer | Ian Moffett <ian@osmora.org> | 2023-12-19 22:08:43 -0500 |
commit | e07242e3a1589742772732c4e739f78bdab20a00 (patch) | |
tree | be63a8cc66ce3388dc73ba1c441e816ae18ec5d3 /sys/include/arch/amd64/lapic.h | |
parent | 4a6226af28a98501c05d961d8878c5e1091d0dee (diff) |
kernel/amd64: lapic: Fixup LAPIC state tracking
This commit removes the lapic_set_base() function and certain globals
from the Local APIC driver so it won't cause problems on hardware with
many CPU sockets or that is just wacky.
Signed-off-by: Ian Moffett <ian@osmora.org>
Diffstat (limited to 'sys/include/arch/amd64/lapic.h')
-rw-r--r-- | sys/include/arch/amd64/lapic.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/sys/include/arch/amd64/lapic.h b/sys/include/arch/amd64/lapic.h index 11edfe4..1e7caf6 100644 --- a/sys/include/arch/amd64/lapic.h +++ b/sys/include/arch/amd64/lapic.h @@ -36,7 +36,6 @@ #define LAPIC_TMR_PERIODIC 0x01 void lapic_timer_init(size_t *freq_out); -void lapic_set_base(void *mmio_base); void lapic_init(void); #endif /* !_AMD64_LAPIC_H_ */ |