From 916d7bd030ed7217d84e249fda1e1608fa4777f0 Mon Sep 17 00:00:00 2001 From: Eric-Paul Ickhorn Date: Sat, 17 Aug 2024 16:54:32 +0200 Subject: [PATCH] Initialize ACPI driver in manager The previous commit said that this is being done, but it didn't have the changes in the driver manager. Those are here. --- i386/legacy-boot/src-asm/drivers/manager.asm | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/i386/legacy-boot/src-asm/drivers/manager.asm b/i386/legacy-boot/src-asm/drivers/manager.asm index 400b650..f75109b 100644 --- a/i386/legacy-boot/src-asm/drivers/manager.asm +++ b/i386/legacy-boot/src-asm/drivers/manager.asm @@ -9,12 +9,12 @@ DRIVER_SLOT_COUNT equ 32 ; the end is forced by the main initialization function. driver_init_functions: dd initialize_pci_driver + dd initialize_acpi_driver ; Ending Entry dd 0 -; [Furthest from EBP] -; -- No Arguments -- -; [Nearest to EBP] +; Arguments: +; -- None -- setup_drivers: push dword esi sub esp, 64 @@ -73,3 +73,4 @@ setup_drivers: ret %include "drivers/pci/driver.asm" +%include "drivers/acpi/driver.asm"