aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--platforms/ibm-fsp/apollo-pci.c8
-rw-r--r--platforms/ibm-fsp/firenze-pci.c10
2 files changed, 0 insertions, 18 deletions
diff --git a/platforms/ibm-fsp/apollo-pci.c b/platforms/ibm-fsp/apollo-pci.c
index f13b69d..f79b7b3 100644
--- a/platforms/ibm-fsp/apollo-pci.c
+++ b/platforms/ibm-fsp/apollo-pci.c
@@ -36,8 +36,6 @@
void apollo_pci_setup_phb(struct phb *phb, unsigned int index)
{
struct dt_node *ioc_node;
- struct lxvpd_pci_slot *s = NULL;
- struct pci_slot *slot = NULL;
/* Grab the device-tree node of the IOC */
ioc_node = phb->dt_node->parent;
@@ -57,12 +55,6 @@ void apollo_pci_setup_phb(struct phb *phb, unsigned int index)
*/
lxvpd_process_slot_entries(phb, ioc_node, 1,
index, sizeof(struct lxvpd_pci_slot));
-
- /* Fixup P7IOC PHB slot */
- slot = phb->slot;
- s = slot ? lxvpd_get_slot(slot) : NULL;
- if (s)
- lxvpd_extract_info(slot, s);
}
void apollo_pci_get_slot_info(struct phb *phb, struct pci_device *pd)
diff --git a/platforms/ibm-fsp/firenze-pci.c b/platforms/ibm-fsp/firenze-pci.c
index aa9a231..b4a0e5a 100644
--- a/platforms/ibm-fsp/firenze-pci.c
+++ b/platforms/ibm-fsp/firenze-pci.c
@@ -937,8 +937,6 @@ static void firenze_pci_slot_init(struct pci_slot *slot)
void firenze_pci_setup_phb(struct phb *phb, unsigned int index)
{
uint32_t hub_id;
- struct pci_slot *slot;
- struct lxvpd_pci_slot *s;
/* Grab Hub ID used to parse VPDs */
hub_id = dt_prop_get_u32_def(phb->dt_node, "ibm,hub-id", 0);
@@ -946,14 +944,6 @@ void firenze_pci_setup_phb(struct phb *phb, unsigned int index)
/* Process the pcie slot entries from the lx vpd lid */
lxvpd_process_slot_entries(phb, dt_root, hub_id,
index, sizeof(struct firenze_pci_slot));
-
- /* Fixup PHB3 slot */
- slot = phb->slot;
- s = slot ? lxvpd_get_slot(slot) : NULL;
- if (s) {
- lxvpd_extract_info(slot, s);
- firenze_pci_slot_init(slot);
- }
}
void firenze_pci_get_slot_info(struct phb *phb, struct pci_device *pd)