xref: /haiku/src/add-ons/kernel/bus_managers/acpi/arch/arm64/arch_init.cpp (revision 4a55cc230cf7566cadcbb23b1928eefff8aea9a2)
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
17 arch_init_find_root_pointer()
18 {
19 	return 0;
20 }
21 
22 
23 void
24 arch_init_interrupt_controller()
25 {
26 	//stub
27 }
28