um_arch.h 296 B

1234567891011121314
  1. /* SPDX-License-Identifier: GPL-2.0-only */
  2. #ifndef __UML_ARCH_H__
  3. #define __UML_ARCH_H__
  4. extern void * __init uml_load_file(const char *filename, unsigned long long *size);
  5. #ifdef CONFIG_OF
  6. extern void __init uml_dtb_init(void);
  7. #else
  8. static inline void uml_dtb_init(void) { }
  9. #endif
  10. #endif