blob: 686b7148b5d1a333e1d76ce3e4a7f22ee06e239f [file] [log] [blame]
Oleksandr Andrushchenko48654412020-08-06 12:42:48 +03001/* SPDX-License-Identifier: GPL-2.0
2 *
3 * (C) 2020, EPAM Systems Inc.
4 */
5#ifndef __XEN_H__
6#define __XEN_H__
7
8/**
9 * xen_init() - Xen initialization
10 *
Oleksandr Andrushchenkoc8506742020-08-06 12:42:54 +030011 * Map Xen memory pages, initialize event handler and xenbus,
12 * setup the grant table.
Oleksandr Andrushchenko48654412020-08-06 12:42:48 +030013 */
14void xen_init(void);
15
16#endif /* __XEN_H__ */