diff options
Diffstat (limited to 'drivers/pci/of.c')
| -rw-r--r-- | drivers/pci/of.c | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/pci/of.c b/drivers/pci/of.c index c94d37ec55c..f0929934bb7 100644 --- a/drivers/pci/of.c +++ b/drivers/pci/of.c @@ -55,7 +55,7 @@ struct device_node * __weak pcibios_get_phb_of_node(struct pci_bus *bus)  	 */  	if (bus->bridge->of_node)  		return of_node_get(bus->bridge->of_node); -	if (bus->bridge->parent->of_node) +	if (bus->bridge->parent && bus->bridge->parent->of_node)  		return of_node_get(bus->bridge->parent->of_node);  	return NULL;  }  |