mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-19 02:04:19 +08:00
181ffd19cc
Move the driver source and Kconfig to the PCI host bridge drivers directory and move the config option to a more appropriate sub-menu instead of occupying the top-level location. Update the Kconfig option with the X86_64 dependency that was implicitly included from the previous location, and add information about the module name when built as a loadable module. Signed-off-by: Keith Busch <keith.busch@intel.com> Signed-off-by: Bjorn Helgaas <bhelgaas@google.com> CC: Jon Derrick <jonathan.derrick@intel.com>
29 lines
705 B
Makefile
29 lines
705 B
Makefile
obj-y := i386.o init.o
|
|
|
|
obj-$(CONFIG_PCI_BIOS) += pcbios.o
|
|
obj-$(CONFIG_PCI_MMCONFIG) += mmconfig_$(BITS).o direct.o mmconfig-shared.o
|
|
obj-$(CONFIG_PCI_DIRECT) += direct.o
|
|
obj-$(CONFIG_PCI_OLPC) += olpc.o
|
|
obj-$(CONFIG_PCI_XEN) += xen.o
|
|
|
|
obj-y += fixup.o
|
|
obj-$(CONFIG_X86_INTEL_CE) += ce4100.o
|
|
obj-$(CONFIG_ACPI) += acpi.o
|
|
obj-y += legacy.o irq.o
|
|
|
|
obj-$(CONFIG_STA2X11) += sta2x11-fixup.o
|
|
|
|
obj-$(CONFIG_X86_NUMACHIP) += numachip.o
|
|
|
|
obj-$(CONFIG_X86_INTEL_MID) += intel_mid_pci.o
|
|
|
|
obj-y += common.o early.o
|
|
obj-y += bus_numa.o
|
|
|
|
obj-$(CONFIG_AMD_NB) += amd_bus.o
|
|
obj-$(CONFIG_PCI_CNB20LE_QUIRK) += broadcom_bus.o
|
|
|
|
ifeq ($(CONFIG_PCI_DEBUG),y)
|
|
EXTRA_CFLAGS += -DDEBUG
|
|
endif
|