mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-27 15:12:21 +00:00
c850674ff7
Make required updates to run on u-boot. Signed-off-by: Oleksandr Andrushchenko <oleksandr_andrushchenko@epam.com> Signed-off-by: Anastasiia Lukianenko <anastasiia_lukianenko@epam.com>
16 lines
290 B
C
16 lines
290 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,
|
|
* setup the grant table.
|
|
*/
|
|
void xen_init(void);
|
|
|
|
#endif /* __XEN_H__ */
|