82f76c6702
arm and i386 has almost the same function acpi_add_rom_blob(), except giving different FWCfgCallback function. This patch moves acpi_add_rom_blob() to utils.c by passing FWCfgCallback to it. Signed-off-by: Wei Yang <richardw.yang@linux.intel.com> Reviewed-by: Igor Mammedov <imammedo@redhat.com> v7: * rebase on top of current master because of conflict v6: * change author from Igor to Michael v5: * remove unnecessary header glib/gprintf.h * rearrange include header to make it more suitable v4: * extract -> moves * adjust comment in source to make checkpatch happy v3: * put acpi_add_rom_blob() to hw/acpi/utils.c v2: * remove unused header in original source file Message-Id: <20190610011830.28398-1-richardw.yang@linux.intel.com> Reviewed-by: Michael S. Tsirkin <mst@redhat.com> Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
23 lines
805 B
Makefile
23 lines
805 B
Makefile
ifeq ($(CONFIG_ACPI),y)
|
|
common-obj-$(CONFIG_ACPI_X86) += core.o piix4.o pcihp.o
|
|
common-obj-$(CONFIG_ACPI_X86_ICH) += ich9.o tco.o
|
|
common-obj-$(CONFIG_ACPI_CPU_HOTPLUG) += cpu_hotplug.o
|
|
common-obj-$(CONFIG_ACPI_MEMORY_HOTPLUG) += memory_hotplug.o
|
|
common-obj-$(CONFIG_ACPI_CPU_HOTPLUG) += cpu.o
|
|
common-obj-$(CONFIG_ACPI_NVDIMM) += nvdimm.o
|
|
common-obj-$(CONFIG_ACPI_VMGENID) += vmgenid.o
|
|
common-obj-$(call lnot,$(CONFIG_ACPI_X86)) += acpi-stub.o
|
|
|
|
common-obj-y += acpi_interface.o
|
|
common-obj-y += bios-linker-loader.o
|
|
common-obj-y += aml-build.o utils.o
|
|
common-obj-$(CONFIG_ACPI_PCI) += pci.o
|
|
common-obj-$(CONFIG_TPM) += tpm.o
|
|
|
|
common-obj-$(CONFIG_IPMI) += ipmi.o
|
|
common-obj-$(call lnot,$(CONFIG_IPMI)) += ipmi-stub.o
|
|
else
|
|
common-obj-y += acpi-stub.o
|
|
endif
|
|
common-obj-$(CONFIG_ALL) += acpi-stub.o ipmi-stub.o
|