mirror of
https://xff.cz/git/u-boot/
synced 2025-09-01 00:32:04 +02:00
Make required updates to run on u-boot and strip test code. Signed-off-by: Anastasiia Lukianenko <anastasiia_lukianenko@epam.com> Signed-off-by: Oleksandr Andrushchenko <oleksandr_andrushchenko@epam.com>
16 lines
264 B
C
16 lines
264 B
C
/* SPDX-License-Identifier: GPL-2.0
|
|
*
|
|
* (C) 2020, EPAM Systems Inc.
|
|
*/
|
|
#ifndef __XEN_H__
|
|
#define __XEN_H__
|
|
|
|
/**
|
|
* xen_init() - Xen initialization
|
|
*
|
|
* Map Xen memory pages, initialize event handler and xenbus.
|
|
*/
|
|
void xen_init(void);
|
|
|
|
#endif /* __XEN_H__ */
|