diff options
author | Vitaly Kuznetsov <vkuznets@redhat.com> | 2017-03-14 20:35:39 +0300 |
---|---|---|
committer | Juergen Gross <jgross@suse.com> | 2017-05-02 11:58:23 +0300 |
commit | 481d66325dfc2a6b4f5e729b64ad144383b63fad (patch) | |
tree | e7f72dfc3710e56be4a4337d127e9341998a336c /arch/x86/xen/Makefile | |
parent | 5e57f1d607d1cc0f54611162525ca6436e17e8b7 (diff) | |
download | linux-481d66325dfc2a6b4f5e729b64ad144383b63fad.tar.xz |
x86/xen: split off enlighten_pvh.c
Create enlighten_pvh.c by splitting off PVH related code from enlighten.c,
put it under CONFIG_XEN_PVH.
Signed-off-by: Vitaly Kuznetsov <vkuznets@redhat.com>
Reviewed-by: Juergen Gross <jgross@suse.com>
Signed-off-by: Juergen Gross <jgross@suse.com>
Diffstat (limited to 'arch/x86/xen/Makefile')
-rw-r--r-- | arch/x86/xen/Makefile | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/arch/x86/xen/Makefile b/arch/x86/xen/Makefile index cb0164aee156..348128b1c55a 100644 --- a/arch/x86/xen/Makefile +++ b/arch/x86/xen/Makefile @@ -15,6 +15,8 @@ obj-y := enlighten.o setup.o multicalls.o mmu.o irq.o \ grant-table.o suspend.o platform-pci-unplug.o \ p2m.o apic.o pmu.o +obj-$(CONFIG_XEN_PVH) += enlighten_pvh.o + obj-$(CONFIG_EVENT_TRACING) += trace.o obj-$(CONFIG_SMP) += smp.o |