]> www.pilppa.org Git - linux-2.6-omap-h63xx.git/blob - drivers/pci/Makefile
4b47f4ece5b70904c9ef68c06f468489ec70939a
[linux-2.6-omap-h63xx.git] / drivers / pci / Makefile
1 #
2 # Makefile for the PCI bus specific drivers.
3 #
4
5 obj-y           += access.o bus.o probe.o remove.o pci.o quirks.o slot.o \
6                         pci-driver.o search.o pci-sysfs.o rom.o setup-res.o
7 obj-$(CONFIG_PROC_FS) += proc.o
8
9 # Build PCI Express stuff if needed
10 obj-$(CONFIG_PCIEPORTBUS) += pcie/
11
12 obj-$(CONFIG_HOTPLUG) += hotplug.o
13
14 # Build the PCI Hotplug drivers if we were asked to
15 obj-$(CONFIG_HOTPLUG_PCI) += hotplug/
16 ifdef CONFIG_HOTPLUG_PCI
17 obj-y += hotplug-pci.o
18 endif
19
20 # Build the PCI MSI interrupt support
21 obj-$(CONFIG_PCI_MSI) += msi.o
22
23 # Build the Hypertransport interrupt support
24 obj-$(CONFIG_HT_IRQ) += htirq.o
25
26 # Build Intel IOMMU support
27 obj-$(CONFIG_DMAR) += dmar.o iova.o intel-iommu.o
28
29 obj-$(CONFIG_INTR_REMAP) += dmar.o intr_remapping.o
30
31 #
32 # Some architectures use the generic PCI setup functions
33 #
34 obj-$(CONFIG_X86) += setup-bus.o
35 obj-$(CONFIG_ALPHA) += setup-bus.o setup-irq.o
36 obj-$(CONFIG_ARM) += setup-bus.o setup-irq.o
37 obj-$(CONFIG_PARISC) += setup-bus.o
38 obj-$(CONFIG_SUPERH) += setup-bus.o setup-irq.o
39 obj-$(CONFIG_PPC32) += setup-irq.o
40 obj-$(CONFIG_PPC) += setup-bus.o
41 obj-$(CONFIG_MIPS) += setup-bus.o setup-irq.o
42 obj-$(CONFIG_X86_VISWS) += setup-irq.o
43 obj-$(CONFIG_MN10300) += setup-bus.o
44
45 #
46 # ACPI Related PCI FW Functions
47 #
48 obj-$(CONFIG_ACPI)    += pci-acpi.o
49
50 # Cardbus & CompactPCI use setup-bus
51 obj-$(CONFIG_HOTPLUG) += setup-bus.o
52
53 obj-$(CONFIG_PCI_SYSCALL) += syscall.o
54
55 ifeq ($(CONFIG_PCI_DEBUG),y)
56 EXTRA_CFLAGS += -DDEBUG
57 endif