aboutsummaryrefslogtreecommitdiffstats
path: root/arch/powerpc/platforms/52xx/efika.c
diff options
context:
space:
mode:
authorStephen Rothwell <sfr@canb.auug.org.au>2007-04-13 03:14:22 -0400
committerPaul Mackerras <paulus@samba.org>2007-04-24 07:31:40 -0400
commitb3a6d2a54b8be331b36d849577a716867895ca75 (patch)
treeec4068a365ef5b1db3d6e7e134ee0acf3ed46ae1 /arch/powerpc/platforms/52xx/efika.c
parentedfedbf0cd0a57b16b638275e8fe8c369580b726 (diff)
[POWERPC] Rename last get_property calls
These got added recently. Signed-off-by: Stephen Rothwell <sfr@canb.auug.org.au> Signed-off-by: Paul Mackerras <paulus@samba.org>
Diffstat (limited to 'arch/powerpc/platforms/52xx/efika.c')
-rw-r--r--arch/powerpc/platforms/52xx/efika.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/powerpc/platforms/52xx/efika.c b/arch/powerpc/platforms/52xx/efika.c
index 042008486969..0eceb1fc2670 100644
--- a/arch/powerpc/platforms/52xx/efika.c
+++ b/arch/powerpc/platforms/52xx/efika.c
@@ -232,12 +232,12 @@ static void __init efika_init_early(void)
232 /* find the boot console from /chosen/stdout */ 232 /* find the boot console from /chosen/stdout */
233 if (!of_chosen) 233 if (!of_chosen)
234 return; 234 return;
235 device_type = get_property(of_chosen, "linux,stdout-path", NULL); 235 device_type = of_get_property(of_chosen, "linux,stdout-path", NULL);
236 if (!device_type) 236 if (!device_type)
237 return; 237 return;
238 stdout_node = of_find_node_by_path(device_type); 238 stdout_node = of_find_node_by_path(device_type);
239 if (stdout_node) { 239 if (stdout_node) {
240 device_type = get_property(stdout_node, "device_type", NULL); 240 device_type = of_get_property(stdout_node, "device_type", NULL);
241 if (device_type && strcmp(device_type, "serial") == 0) 241 if (device_type && strcmp(device_type, "serial") == 0)
242 add_preferred_console("ttyPSC", 0, NULL); 242 add_preferred_console("ttyPSC", 0, NULL);
243 of_node_put(stdout_node); 243 of_node_put(stdout_node);