diff options
author | Stephen Rothwell <sfr@canb.auug.org.au> | 2007-12-09 22:33:21 -0500 |
---|---|---|
committer | Paul Mackerras <paulus@samba.org> | 2007-12-10 21:42:37 -0500 |
commit | 44ef339073f67d4abcc62ae52a5fbc069d7a4d29 (patch) | |
tree | f7d8dab47b9822bbd22a399f24a3e24d10f96621 /arch/powerpc/kernel/isa-bridge.c | |
parent | 6207e81695c1a64ebed668f26106f3384ad2323a (diff) |
[POWERPC] pci_controller->arch_data really is a struct device_node *
Signed-off-by: Stephen Rothwell <sfr@canb.auug.org.au>
Signed-off-by: Paul Mackerras <paulus@samba.org>
Diffstat (limited to 'arch/powerpc/kernel/isa-bridge.c')
-rw-r--r-- | arch/powerpc/kernel/isa-bridge.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/powerpc/kernel/isa-bridge.c b/arch/powerpc/kernel/isa-bridge.c index 965bfcc9ad2d..ee172aa42aa7 100644 --- a/arch/powerpc/kernel/isa-bridge.c +++ b/arch/powerpc/kernel/isa-bridge.c | |||
@@ -145,7 +145,7 @@ void __init isa_bridge_find_early(struct pci_controller *hose) | |||
145 | for_each_node_by_type(np, "isa") { | 145 | for_each_node_by_type(np, "isa") { |
146 | /* Look for our hose being a parent */ | 146 | /* Look for our hose being a parent */ |
147 | for (parent = of_get_parent(np); parent;) { | 147 | for (parent = of_get_parent(np); parent;) { |
148 | if (parent == hose->arch_data) { | 148 | if (parent == hose->dn) { |
149 | of_node_put(parent); | 149 | of_node_put(parent); |
150 | break; | 150 | break; |
151 | } | 151 | } |