f13a944ca6
Now we have two identical build_mcfg functions. Consolidate them in acpi/pci.c. Signed-off-by: Wei Yang <richardw.yang@linux.intel.com> v4: * ACPI_PCI depends on both ACPI and PCI * rebase on latest master, adjust arm Kconfig v3: * adjust changelog based on Igor's suggestion Message-Id: <20190521062836.6541-2-richardw.yang@linux.intel.com> Reviewed-by: Igor Mammedov <imammedo@redhat.com> Reviewed-by: Michael S. Tsirkin <mst@redhat.com> Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
23 lines
797 B
Makefile
23 lines
797 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
|
|
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
|