[PATCH] Initial generic hypertransport interrupt support
[safe/jmp/linux-2.6] / 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 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
17 #
18 # Some architectures use the generic PCI setup functions
19 #
20 obj-$(CONFIG_X86) += setup-bus.o
21 obj-$(CONFIG_ALPHA) += setup-bus.o setup-irq.o
22 obj-$(CONFIG_ARM) += setup-bus.o setup-irq.o
23 obj-$(CONFIG_PARISC) += setup-bus.o
24 obj-$(CONFIG_SUPERH) += setup-bus.o setup-irq.o
25 obj-$(CONFIG_PPC32) += setup-irq.o
26 obj-$(CONFIG_PPC64) += setup-bus.o
27 obj-$(CONFIG_MIPS) += setup-bus.o setup-irq.o
28 obj-$(CONFIG_X86_VISWS) += setup-irq.o
29 obj-$(CONFIG_HT_IRQ) += htirq.o
30
31 msiobj-y := msi.o
32 msiobj-$(CONFIG_IA64) += msi-apic.o
33 msiobj-$(CONFIG_IA64_GENERIC) += msi-altix.o
34 msiobj-$(CONFIG_IA64_SGI_SN2) += msi-altix.o
35 obj-$(CONFIG_PCI_MSI) += $(msiobj-y)
36
37 #
38 # ACPI Related PCI FW Functions
39 #
40 obj-$(CONFIG_ACPI)    += pci-acpi.o
41
42 # Cardbus & CompactPCI use setup-bus
43 obj-$(CONFIG_HOTPLUG) += setup-bus.o
44
45 ifndef CONFIG_X86
46 obj-y += syscall.o
47 endif
48
49 ifeq ($(CONFIG_PCI_DEBUG),y)
50 EXTRA_CFLAGS += -DDEBUG
51 endif