]> bbs.cooldavid.org Git - net-next-2.6.git/blob - drivers/pci/Makefile
4df48d58eaa6372109bbcd2ca4c7cd04aaa25a6e
[net-next-2.6.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 \
6                         pci-driver.o search.o pci-sysfs.o rom.o setup-res.o \
7                         irq.o
8 obj-$(CONFIG_PROC_FS) += proc.o
9 obj-$(CONFIG_SYSFS) += slot.o
10
11 obj-$(CONFIG_PCI_LEGACY) += legacy.o
12 CFLAGS_legacy.o += -Wno-deprecated-declarations
13
14 # Build PCI Express stuff if needed
15 obj-$(CONFIG_PCIEPORTBUS) += pcie/
16
17 obj-$(CONFIG_PCI_IOAPIC) += ioapic.o
18
19 obj-$(CONFIG_HOTPLUG) += hotplug.o
20
21 # Build the PCI Hotplug drivers if we were asked to
22 obj-$(CONFIG_HOTPLUG_PCI) += hotplug/
23 ifdef CONFIG_HOTPLUG_PCI
24 obj-y += hotplug-pci.o
25 endif
26
27 # Build the PCI MSI interrupt support
28 obj-$(CONFIG_PCI_MSI) += msi.o
29
30 # Build the Hypertransport interrupt support
31 obj-$(CONFIG_HT_IRQ) += htirq.o
32
33 # Build Intel IOMMU support
34 obj-$(CONFIG_DMAR) += dmar.o iova.o intel-iommu.o
35
36 obj-$(CONFIG_INTR_REMAP) += dmar.o intr_remapping.o
37
38 obj-$(CONFIG_PCI_IOV) += iov.o
39
40 #
41 # Some architectures use the generic PCI setup functions
42 #
43 obj-$(CONFIG_X86) += setup-bus.o
44 obj-$(CONFIG_ALPHA) += setup-bus.o setup-irq.o
45 obj-$(CONFIG_ARM) += setup-bus.o setup-irq.o
46 obj-$(CONFIG_PARISC) += setup-bus.o
47 obj-$(CONFIG_SUPERH) += setup-bus.o setup-irq.o
48 obj-$(CONFIG_PPC) += setup-bus.o
49 obj-$(CONFIG_MIPS) += setup-bus.o setup-irq.o
50 obj-$(CONFIG_X86_VISWS) += setup-irq.o
51 obj-$(CONFIG_MN10300) += setup-bus.o
52
53 #
54 # ACPI Related PCI FW Functions
55 #
56 obj-$(CONFIG_ACPI)    += pci-acpi.o
57
58 # Cardbus & CompactPCI use setup-bus
59 obj-$(CONFIG_HOTPLUG) += setup-bus.o
60
61 obj-$(CONFIG_PCI_SYSCALL) += syscall.o
62
63 obj-$(CONFIG_PCI_STUB) += pci-stub.o
64
65 ifeq ($(CONFIG_PCI_DEBUG),y)
66 EXTRA_CFLAGS += -DDEBUG
67 endif