diff options
Diffstat (limited to 'sys/kern/init_main.c')
-rw-r--r-- | sys/kern/init_main.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/sys/kern/init_main.c b/sys/kern/init_main.c index 6fbc48c..b3a1e8b 100644 --- a/sys/kern/init_main.c +++ b/sys/kern/init_main.c @@ -33,6 +33,7 @@ #include <sys/tty.h> #include <sys/syslog.h> #include <sys/machdep.h> +#include <firmware/acpi/acpi.h> #include <vm/vm_physseg.h> #include <logo.h> @@ -56,6 +57,8 @@ main(void) processor_init(&bsp); vm_physseg_init(); + acpi_init(); + /* We're done here, halt the processor */ __ASMV("cli; hlt"); } |