xref: /haiku/src/system/kernel/arch/arm/arch_system_info.cpp (revision 579f1dbca962a2a03df54f69fdc6e9423f91f20e)
1 /*
2  * Copyright 2007, Haiku Inc. All rights reserved.
3  * Distributed under the terms of the MIT License.
4  *
5  * Authors:
6  * 		François Revol <revol@free.fr>
7  *
8  * Copyright 2006, Ingo Weinhold <bonefish@cs.tu-berlin.de>.
9  * All rights reserved. Distributed under the terms of the MIT License.
10  */
11 
12 
13 #include <OS.h>
14 
15 #include <arch_cpu.h>
16 #include <arch/system_info.h>
17 #include <boot/kernel_args.h>
18 
19 
20 status_t
21 arch_get_system_info(system_info *info, size_t size)
22 {
23 	return B_OK;
24 }
25 
26 
27 status_t
28 arch_system_info_init(struct kernel_args *args)
29 {
30 	return B_OK;
31 }
32