Greg Kroah-Hartman | b244131 | 2017-11-01 15:07:57 +0100 | [diff] [blame^] | 1 | /* SPDX-License-Identifier: GPL-2.0 */ |
Juergen Gross | 47ae4b0 | 2016-08-29 08:48:43 +0200 | [diff] [blame] | 2 | #ifndef __LINUX_HYPEVISOR_H |
3 | #define __LINUX_HYPEVISOR_H | ||||
4 | |||||
5 | /* | ||||
6 | * Generic Hypervisor support | ||||
7 | * Juergen Gross <jgross@suse.com> | ||||
8 | */ | ||||
9 | |||||
10 | #ifdef CONFIG_HYPERVISOR_GUEST | ||||
11 | #include <asm/hypervisor.h> | ||||
12 | #else | ||||
13 | static inline void hypervisor_pin_vcpu(int cpu) | ||||
14 | { | ||||
15 | } | ||||
16 | #endif | ||||
17 | |||||
18 | #endif /* __LINUX_HYPEVISOR_H */ |