unify {de,}mangle_poll(), get rid of kernel-side POLL...
[cris-mirror.git] / include / linux / hypervisor.h
blobb19563f9a8ebb9c58e115b79fecde5a0167ba0e0
1 /* SPDX-License-Identifier: GPL-2.0 */
2 #ifndef __LINUX_HYPEVISOR_H
3 #define __LINUX_HYPEVISOR_H
5 /*
6 * Generic Hypervisor support
7 * Juergen Gross <jgross@suse.com>
8 */
10 #ifdef CONFIG_X86
11 #include <asm/x86_init.h>
12 static inline void hypervisor_pin_vcpu(int cpu)
14 x86_platform.hyper.pin_vcpu(cpu);
16 #else
17 static inline void hypervisor_pin_vcpu(int cpu)
20 #endif
22 #endif /* __LINUX_HYPEVISOR_H */