aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/pci/hotplug/Makefile
diff options
context:
space:
mode:
authorLinus Torvalds <torvalds@ppc970.osdl.org>2005-04-16 18:20:36 -0400
committerLinus Torvalds <torvalds@ppc970.osdl.org>2005-04-16 18:20:36 -0400
commit1da177e4c3f41524e886b7f1b8a0c1fc7321cac2 (patch)
tree0bba044c4ce775e45a88a51686b5d9f90697ea9d /drivers/pci/hotplug/Makefile
Linux-2.6.12-rc2v2.6.12-rc2
Initial git repository build. I'm not bothering with the full history, even though we have it. We can create a separate "historical" git archive of that later if we want to, and in the meantime it's about 3.2GB when imported into git - space that would just make the early git days unnecessarily complicated, when we don't have a lot of good infrastructure for it. Let it rip!
Diffstat (limited to 'drivers/pci/hotplug/Makefile')
-rw-r--r--drivers/pci/hotplug/Makefile74
1 files changed, 74 insertions, 0 deletions
diff --git a/drivers/pci/hotplug/Makefile b/drivers/pci/hotplug/Makefile
new file mode 100644
index 000000000000..93c120ddbd39
--- /dev/null
+++ b/drivers/pci/hotplug/Makefile
@@ -0,0 +1,74 @@
1#
2# Makefile for the Linux kernel pci hotplug controller drivers.
3#
4
5obj-$(CONFIG_HOTPLUG_PCI) += pci_hotplug.o
6obj-$(CONFIG_HOTPLUG_PCI_FAKE) += fakephp.o
7obj-$(CONFIG_HOTPLUG_PCI_COMPAQ) += cpqphp.o
8obj-$(CONFIG_HOTPLUG_PCI_IBM) += ibmphp.o
9obj-$(CONFIG_HOTPLUG_PCI_ACPI) += acpiphp.o
10obj-$(CONFIG_HOTPLUG_PCI_ACPI_IBM) += acpiphp_ibm.o
11obj-$(CONFIG_HOTPLUG_PCI_CPCI_ZT5550) += cpcihp_zt5550.o
12obj-$(CONFIG_HOTPLUG_PCI_CPCI_GENERIC) += cpcihp_generic.o
13obj-$(CONFIG_HOTPLUG_PCI_PCIE) += pciehp.o
14obj-$(CONFIG_HOTPLUG_PCI_SHPC) += shpchp.o
15obj-$(CONFIG_HOTPLUG_PCI_RPA) += rpaphp.o
16obj-$(CONFIG_HOTPLUG_PCI_RPA_DLPAR) += rpadlpar_io.o
17
18pci_hotplug-objs := pci_hotplug_core.o
19
20ifdef CONFIG_HOTPLUG_PCI_CPCI
21pci_hotplug-objs += cpci_hotplug_core.o \
22 cpci_hotplug_pci.o
23endif
24
25cpqphp-objs := cpqphp_core.o \
26 cpqphp_ctrl.o \
27 cpqphp_sysfs.o \
28 cpqphp_pci.o
29cpqphp-$(CONFIG_HOTPLUG_PCI_COMPAQ_NVRAM) += cpqphp_nvram.o
30cpqphp-objs += $(cpqphp-y)
31
32ibmphp-objs := ibmphp_core.o \
33 ibmphp_ebda.o \
34 ibmphp_pci.o \
35 ibmphp_res.o \
36 ibmphp_hpc.o
37
38acpiphp-objs := acpiphp_core.o \
39 acpiphp_glue.o \
40 acpiphp_pci.o \
41 acpiphp_res.o
42
43rpaphp-objs := rpaphp_core.o \
44 rpaphp_pci.o \
45 rpaphp_slot.o \
46 rpaphp_vio.o
47
48rpadlpar_io-objs := rpadlpar_core.o \
49 rpadlpar_sysfs.o
50
51pciehp-objs := pciehp_core.o \
52 pciehp_ctrl.o \
53 pciehp_pci.o \
54 pciehp_hpc.o
55ifdef CONFIG_ACPI_BUS
56 pciehp-objs += pciehprm_acpi.o
57else
58 pciehp-objs += pciehprm_nonacpi.o
59endif
60
61shpchp-objs := shpchp_core.o \
62 shpchp_ctrl.o \
63 shpchp_pci.o \
64 shpchp_sysfs.o \
65 shpchp_hpc.o
66ifdef CONFIG_ACPI_BUS
67 shpchp-objs += shpchprm_acpi.o
68else
69 ifdef CONFIG_HOTPLUG_PCI_SHPC_PHPRM_LEGACY
70 shpchp-objs += shpchprm_legacy.o
71 else
72 shpchp-objs += shpchprm_nonacpi.o
73 endif
74endif