diff options
author | linas@austin.ibm.com <linas@austin.ibm.com> | 2005-12-01 19:56:14 -0500 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2006-01-09 15:13:17 -0500 |
commit | d681db4aed4453c7d34adfbb64956271186514e9 (patch) | |
tree | dacc3bb27c198bbae2740d8270ad8c37d9ba0124 /drivers/pci/hotplug/rpaphp_pci.c | |
parent | 81745512c6bb78fc78265b881206b3f6800dd09f (diff) |
[PATCH] PCI Hotplug/powerpc: remove duplicated code
The RPAPHP code contains a routine that duplicates some existing code.
This patch removes the rpaphp version of the code.
Signed-off-by: Linas Vepstas <linas@austin.ibm.com>
Acked-by: John Rose <johnrose@austin.ibm.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers/pci/hotplug/rpaphp_pci.c')
-rw-r--r-- | drivers/pci/hotplug/rpaphp_pci.c | 14 |
1 files changed, 1 insertions, 13 deletions
diff --git a/drivers/pci/hotplug/rpaphp_pci.c b/drivers/pci/hotplug/rpaphp_pci.c index 4b35097b3d9f..fc2368710cf7 100644 --- a/drivers/pci/hotplug/rpaphp_pci.c +++ b/drivers/pci/hotplug/rpaphp_pci.c | |||
@@ -287,18 +287,6 @@ rpaphp_pci_config_slot(struct pci_bus *bus) | |||
287 | return dev; | 287 | return dev; |
288 | } | 288 | } |
289 | 289 | ||
290 | void rpaphp_eeh_init_nodes(struct device_node *dn) | ||
291 | { | ||
292 | struct device_node *sib; | ||
293 | |||
294 | for (sib = dn->child; sib; sib = sib->sibling) | ||
295 | rpaphp_eeh_init_nodes(sib); | ||
296 | eeh_add_device_early(dn); | ||
297 | return; | ||
298 | |||
299 | } | ||
300 | EXPORT_SYMBOL_GPL(rpaphp_eeh_init_nodes); | ||
301 | |||
302 | static void print_slot_pci_funcs(struct pci_bus *bus) | 290 | static void print_slot_pci_funcs(struct pci_bus *bus) |
303 | { | 291 | { |
304 | struct device_node *dn; | 292 | struct device_node *dn; |
@@ -324,7 +312,7 @@ int rpaphp_config_pci_adapter(struct pci_bus *bus) | |||
324 | if (!dn) | 312 | if (!dn) |
325 | goto exit; | 313 | goto exit; |
326 | 314 | ||
327 | rpaphp_eeh_init_nodes(dn); | 315 | eeh_add_device_tree_early(dn); |
328 | dev = rpaphp_pci_config_slot(bus); | 316 | dev = rpaphp_pci_config_slot(bus); |
329 | if (!dev) { | 317 | if (!dev) { |
330 | err("%s: can't find any devices.\n", __FUNCTION__); | 318 | err("%s: can't find any devices.\n", __FUNCTION__); |