]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - include/linux/hypervisor.h
regulator: ab8500: Remove AB8505 USB regulator
[mirror_ubuntu-bionic-kernel.git] / include / linux / hypervisor.h
CommitLineData
b2441318 1/* SPDX-License-Identifier: GPL-2.0 */
47ae4b05
JG
2#ifndef __LINUX_HYPEVISOR_H
3#define __LINUX_HYPEVISOR_H
4
5/*
6 * Generic Hypervisor support
7 * Juergen Gross <jgross@suse.com>
8 */
9
f72e38e8
JG
10#ifdef CONFIG_X86
11#include <asm/x86_init.h>
12static inline void hypervisor_pin_vcpu(int cpu)
13{
14 x86_platform.hyper.pin_vcpu(cpu);
15}
47ae4b05
JG
16#else
17static inline void hypervisor_pin_vcpu(int cpu)
18{
19}
20#endif
21
22#endif /* __LINUX_HYPEVISOR_H */