Back to home page

OSCL-LXR

 
 

    


0001 /* SPDX-License-Identifier: GPL-2.0-only */
0002 
0003 #ifndef __UML_ARCH_H__
0004 #define __UML_ARCH_H__
0005 
0006 extern void * __init uml_load_file(const char *filename, unsigned long long *size);
0007 
0008 #ifdef CONFIG_OF
0009 extern void __init uml_dtb_init(void);
0010 #else
0011 static inline void uml_dtb_init(void) { }
0012 #endif
0013 
0014 #endif