diff options
Diffstat (limited to 'include/xen.h')
-rw-r--r-- | include/xen.h | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/include/xen.h b/include/xen.h new file mode 100644 index 00000000000..abc3546dd2b --- /dev/null +++ b/include/xen.h @@ -0,0 +1,15 @@ +/* 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. + */ +void xen_init(void); + +#endif /* __XEN_H__ */ |