diff options
author | Benjamin Herrenschmidt <benh@kernel.crashing.org> | 2008-10-06 20:15:07 -0400 |
---|---|---|
committer | Benjamin Herrenschmidt <benh@kernel.crashing.org> | 2008-10-06 20:15:07 -0400 |
commit | fa6428ebfa2197841902b89cbc25334707e2f6eb (patch) | |
tree | d139b822bc5447198528defb29f0c0e90d89651c /arch/powerpc/sysdev | |
parent | c9b59da130b4430910e02a80816f317534cd5e53 (diff) | |
parent | 3d5fa877bdf65451c78c3b3d581355deea403b80 (diff) |
Merge commit 'jwb/jwb-next'
Diffstat (limited to 'arch/powerpc/sysdev')
-rw-r--r-- | arch/powerpc/sysdev/ppc4xx_pci.c | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/arch/powerpc/sysdev/ppc4xx_pci.c b/arch/powerpc/sysdev/ppc4xx_pci.c index 5da8a44ea2f6..9f6f73d584d6 100644 --- a/arch/powerpc/sysdev/ppc4xx_pci.c +++ b/arch/powerpc/sysdev/ppc4xx_pci.c | |||
@@ -276,9 +276,16 @@ static void __init ppc4xx_probe_pci_bridge(struct device_node *np) | |||
276 | const int *bus_range; | 276 | const int *bus_range; |
277 | int primary = 0; | 277 | int primary = 0; |
278 | 278 | ||
279 | /* Check if device is enabled */ | ||
280 | if (!of_device_is_available(np)) { | ||
281 | printk(KERN_INFO "%s: Port disabled via device-tree\n", | ||
282 | np->full_name); | ||
283 | return; | ||
284 | } | ||
285 | |||
279 | /* Fetch config space registers address */ | 286 | /* Fetch config space registers address */ |
280 | if (of_address_to_resource(np, 0, &rsrc_cfg)) { | 287 | if (of_address_to_resource(np, 0, &rsrc_cfg)) { |
281 | printk(KERN_ERR "%s:Can't get PCI config register base !", | 288 | printk(KERN_ERR "%s: Can't get PCI config register base !", |
282 | np->full_name); | 289 | np->full_name); |
283 | return; | 290 | return; |
284 | } | 291 | } |