diff options
author | K. Y. Srinivasan <kys@microsoft.com> | 2017-01-18 18:45:02 -0500 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2017-01-19 05:42:07 -0500 |
commit | 8730046c1498e8fb8c9a124789893944e8ce8220 (patch) | |
tree | 0028573415d5e137e05a461338891eb6b21a4945 /arch/x86/Kbuild | |
parent | 352c9624242d5836ad8a960826183011367871a4 (diff) |
Drivers: hv vmbus: Move Hypercall page setup out of common code
As part of the effort to separate out architecture specific code, move the
hypercall page setup to an architecture specific file.
Signed-off-by: K. Y. Srinivasan <kys@microsoft.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'arch/x86/Kbuild')
-rw-r--r-- | arch/x86/Kbuild | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/arch/x86/Kbuild b/arch/x86/Kbuild index eb3abf8ac44e..586b786b3edf 100644 --- a/arch/x86/Kbuild +++ b/arch/x86/Kbuild | |||
@@ -7,6 +7,9 @@ obj-$(CONFIG_KVM) += kvm/ | |||
7 | # Xen paravirtualization support | 7 | # Xen paravirtualization support |
8 | obj-$(CONFIG_XEN) += xen/ | 8 | obj-$(CONFIG_XEN) += xen/ |
9 | 9 | ||
10 | # Hyper-V paravirtualization support | ||
11 | obj-$(CONFIG_HYPERVISOR_GUEST) += hyperv/ | ||
12 | |||
10 | # lguest paravirtualization support | 13 | # lguest paravirtualization support |
11 | obj-$(CONFIG_LGUEST_GUEST) += lguest/ | 14 | obj-$(CONFIG_LGUEST_GUEST) += lguest/ |
12 | 15 | ||