summaryrefslogtreecommitdiff
path: root/drivers/hotplug/Makefile
diff options
context:
space:
mode:
authorGreg Kroah-Hartman <greg@kroah.com>2002-02-26 22:15:44 -0800
committerGreg Kroah-Hartman <greg@kroah.com>2002-02-26 22:15:44 -0800
commit08f129d2bf6e1dae9f0e8d7f8a5a9f993cd14282 (patch)
tree56e9bd500936ca273056f968bf4f01568ac36f40 /drivers/hotplug/Makefile
parent2d28f76fcbb51c513e81b82260f6c75fd8089416 (diff)
Added new IBM PCI Hotplug controller driver.
Written by Irene Zubarev, Tong Yu, Jyoti Shah, Chuck Cole, and me.
Diffstat (limited to 'drivers/hotplug/Makefile')
-rw-r--r--drivers/hotplug/Makefile12
1 files changed, 11 insertions, 1 deletions
diff --git a/drivers/hotplug/Makefile b/drivers/hotplug/Makefile
index 63cd2165c076..d3f1c0f5b345 100644
--- a/drivers/hotplug/Makefile
+++ b/drivers/hotplug/Makefile
@@ -4,12 +4,13 @@
O_TARGET := vmlinux-obj.o
-list-multi := cpqphp.o pci_hotplug.o
+list-multi := cpqphp.o pci_hotplug.o ibmphp.o
export-objs := pci_hotplug_core.o pci_hotplug_util.o
obj-$(CONFIG_HOTPLUG_PCI) += pci_hotplug.o
obj-$(CONFIG_HOTPLUG_PCI_COMPAQ) += cpqphp.o
+obj-$(CONFIG_HOTPLUG_PCI_IBM) += ibmphp.o
pci_hotplug-objs := pci_hotplug_core.o \
pci_hotplug_util.o
@@ -19,6 +20,12 @@ cpqphp-objs := cpqphp_core.o \
cpqphp_proc.o \
cpqphp_pci.o
+ibmphp-objs := ibmphp_core.o \
+ ibmphp_ebda.o \
+ ibmphp_pci.o \
+ ibmphp_res.o \
+ ibmphp_hpc.o
+
ifeq ($(CONFIG_HOTPLUG_PCI_COMPAQ_NVRAM),y)
cpqphp-objs += cpqphp_nvram.o
endif
@@ -32,3 +39,6 @@ pci_hotplug.o: $(pci_hotplug-objs)
cpqphp.o: $(cpqphp-objs)
$(LD) -r -o $@ $(cpqphp-objs)
+ibmphp.o: $(ibmphp-objs)
+ $(LD) -r -o $@ $(ibmphp-objs)
+