blob: c3124c7b8d3a9f2fb95d7e3acdb4a42f3e46f881 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
/* SPDX-License-Identifier: GPL-2.0-only */
/******************************************************************************
* asm-x86/guest.h
*
* Copyright (c) 2017 Citrix Systems Ltd.
*/
#ifndef __X86_GUEST_H__
#define __X86_GUEST_H__
#include <asm/guest/hyperv.h>
#include <asm/guest/hypervisor.h>
#include <asm/guest/pvh-boot.h>
#include <asm/guest/xen.h>
#include <asm/guest/xen-hcall.h>
#include <asm/pv/shim.h>
#endif /* __X86_GUEST_H__ */
/*
* Local variables:
* mode: C
* c-file-style: "BSD"
* c-basic-offset: 4
* tab-width: 4
* indent-tabs-mode: nil
* End:
*/
|