From: Miao Yan Date: Mon, 23 May 2016 02:37:21 +0000 (-0700) Subject: x86: qemu: rename qemu/acpi_table.c X-Git-Tag: v2016.07-rc1~177^2~34 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=494ec0d0933784b4d14cfb40380fb77408a8b7ef;p=platform%2Fkernel%2Fu-boot.git x86: qemu: rename qemu/acpi_table.c Rename qemu/acpi_table.c to qemu/e820.c, because ACPI stuff is moved to qfw core, this file only contains code for installing e820 table. Signed-off-by: Miao Yan Reviewed-by: Bin Meng --- diff --git a/arch/x86/cpu/qemu/Makefile b/arch/x86/cpu/qemu/Makefile index 7c08c3d..a080c5e 100644 --- a/arch/x86/cpu/qemu/Makefile +++ b/arch/x86/cpu/qemu/Makefile @@ -8,5 +8,4 @@ ifndef CONFIG_EFI_STUB obj-y += car.o dram.o endif obj-y += qemu.o -obj-$(CONFIG_QFW) += cpu.o -obj-$(CONFIG_GENERATE_ACPI_TABLE) += acpi_table.o +obj-$(CONFIG_QFW) += cpu.o e820.o diff --git a/arch/x86/cpu/qemu/acpi_table.c b/arch/x86/cpu/qemu/e820.c similarity index 100% rename from arch/x86/cpu/qemu/acpi_table.c rename to arch/x86/cpu/qemu/e820.c