xref: /haiku/src/system/boot/platform/riscv/fdt.h (revision cbe0a0c436162d78cc3f92a305b64918c839d079)
1 /*
2  * Copyright 2021, Haiku, Inc.
3  * Distributed under the terms of the MIT License.
4  */
5 
6 
7 #ifndef _FDT_H_
8 #define _FDT_H_
9 
10 
11 extern void* gFdt;
12 
13 
14 void fdt_init(void* fdt);
15 void fdt_set_kernel_args();
16 
17 
18 #endif	// _FDT_H_
19