diff options
author | Vitaly Kuznetsov <vkuznets@redhat.com> | 2017-04-04 14:48:17 +0200 |
---|---|---|
committer | Juergen Gross <jgross@suse.com> | 2017-05-02 11:08:51 +0200 |
commit | 7e0563dea9c4e62297846359186c597e7231912d (patch) | |
tree | 1169c1bdddf144352f166a5b2683a46672eeb4fc /arch/x86/xen/Makefile | |
parent | feef87ebfde295ff29a8a57ce47c933db7e79b05 (diff) | |
download | linux-7e0563dea9c4e62297846359186c597e7231912d.tar.gz linux-7e0563dea9c4e62297846359186c597e7231912d.tar.bz2 linux-7e0563dea9c4e62297846359186c597e7231912d.zip |
x86/xen: split off mmu_pv.c
Basically, mmu.c is renamed to mmu_pv.c and some code moved out to common
mmu.c.
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 | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/x86/xen/Makefile b/arch/x86/xen/Makefile index 6a95a8ba3801..8da1ca92e604 100644 --- a/arch/x86/xen/Makefile +++ b/arch/x86/xen/Makefile @@ -8,12 +8,12 @@ endif # Make sure early boot has no stackprotector nostackp := $(call cc-option, -fno-stack-protector) CFLAGS_enlighten_pv.o := $(nostackp) -CFLAGS_mmu.o := $(nostackp) +CFLAGS_mmu_pv.o := $(nostackp) obj-y := enlighten.o setup.o multicalls.o mmu.o irq.o \ time.o xen-asm.o xen-asm_$(BITS).o \ grant-table.o suspend.o platform-pci-unplug.o \ - p2m.o apic.o pmu.o enlighten_pv.o + p2m.o apic.o pmu.o enlighten_pv.o mmu_pv.o obj-$(CONFIG_XEN_PVHVM) += enlighten_hvm.o mmu_hvm.o obj-$(CONFIG_XEN_PVH) += enlighten_pvh.o |