xref: /haiku/src/add-ons/kernel/bus_managers/acpi/arch/arm64/arch_init.cpp (revision 97f11716bfaa0f385eb0e28a52bf56a5023b9e99)
1 /*
2  * Copyright 2022, Haiku, Inc. All Rights Reserved.
3  * Distributed under the terms of the MIT License.
4  */
5 
6 
7 #include <ACPI.h>
8 
9 extern "C" {
10 #include "acpi.h"
11 #include "accommon.h"
12 }
13 
14 #include "arch_init.h"
15 
16 ACPI_PHYSICAL_ADDRESS
arch_init_find_root_pointer()17 arch_init_find_root_pointer()
18 {
19 	return 0;
20 }
21 
22 
23 void
arch_init_interrupt_controller()24 arch_init_interrupt_controller()
25 {
26 	//stub
27 }
28