aboutsummaryrefslogtreecommitdiffstats
path: root/arch/powerpc/kernel
diff options
context:
space:
mode:
Diffstat (limited to 'arch/powerpc/kernel')
-rw-r--r--arch/powerpc/kernel/pci_dn.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/arch/powerpc/kernel/pci_dn.c b/arch/powerpc/kernel/pci_dn.c
index 85d4d8924b5c..1c67de52e3ce 100644
--- a/arch/powerpc/kernel/pci_dn.c
+++ b/arch/powerpc/kernel/pci_dn.c
@@ -56,11 +56,6 @@ static void * __devinit update_dn_pci_info(struct device_node *dn, void *data)
56 pdn->busno = (regs[0] >> 16) & 0xff; 56 pdn->busno = (regs[0] >> 16) & 0xff;
57 pdn->devfn = (regs[0] >> 8) & 0xff; 57 pdn->devfn = (regs[0] >> 8) & 0xff;
58 } 58 }
59 if (firmware_has_feature(FW_FEATURE_ISERIES)) {
60 const u32 *busp = of_get_property(dn, "linux,subbus", NULL);
61 if (busp)
62 pdn->bussubno = *busp;
63 }
64 59
65 pdn->pci_ext_config_space = (type && *type == 1); 60 pdn->pci_ext_config_space = (type && *type == 1);
66 return NULL; 61 return NULL;