blob: 1e07fb7ee35eee1b22111405ad6c1e74961f6012 [file] [log] [blame]
Vincent Whitchurch361640b2021-12-08 16:11:22 +01001/* SPDX-License-Identifier: GPL-2.0-only */
2
3#ifndef __UML_ARCH_H__
4#define __UML_ARCH_H__
5
6extern void * __init uml_load_file(const char *filename, unsigned long long *size);
7
Vincent Whitchurchb31297f2021-12-08 16:11:23 +01008#ifdef CONFIG_OF
9extern void __init uml_dtb_init(void);
10#else
11static inline void uml_dtb_init(void) { }
12#endif
13
Vincent Whitchurch361640b2021-12-08 16:11:22 +010014#endif