linuxppc-dev.lists.ozlabs.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] [POWERPC] Rename last get_property calls
@ 2007-04-13  7:14 Stephen Rothwell
  2007-04-24  3:48 ` [PATCH 1/5] [POWERPC] Remove find_compatible_devices Stephen Rothwell
  0 siblings, 1 reply; 6+ messages in thread
From: Stephen Rothwell @ 2007-04-13  7:14 UTC (permalink / raw)
  To: paulus; +Cc: ppc-dev

These got added recently.

Signed-off-by: Stephen Rothwell <sfr@canb.auug.org.au>
---
 arch/powerpc/kernel/of_device.c     |    4 ++--
 arch/powerpc/platforms/52xx/efika.c |    4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

This is relative to the current powerpc for-2.6.22 tree.
-- 
Cheers,
Stephen Rothwell                    sfr@canb.auug.org.au

diff --git a/arch/powerpc/kernel/of_device.c b/arch/powerpc/kernel/of_device.c
index e8aa1f3..0c8ea76 100644
--- a/arch/powerpc/kernel/of_device.c
+++ b/arch/powerpc/kernel/of_device.c
@@ -132,7 +132,7 @@ static ssize_t of_device_get_modalias(struct of_device *ofdev,
 				ofdev->node->name, ofdev->node->type);
 
 	/* Get compatible property if any */
-	compat = get_property(ofdev->node, "compatible", &cplen);
+	compat = of_get_property(ofdev->node, "compatible", &cplen);
 	if (!compat)
 		return csize;
 
@@ -194,7 +194,7 @@ int of_device_uevent(struct device *dev,
          * it's not really legal to split it out with commas. We split it
          * up using a number of environment variables instead. */
 
-	compat = get_property(ofdev->node, "compatible", &cplen);
+	compat = of_get_property(ofdev->node, "compatible", &cplen);
 	while (compat && *compat && cplen > 0) {
 		if (add_uevent_var(envp, num_envp, &i,
 				   buffer, buffer_size, &length,
diff --git a/arch/powerpc/platforms/52xx/efika.c b/arch/powerpc/platforms/52xx/efika.c
index 0420084..0eceb1f 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)
 	/* find the boot console from /chosen/stdout */
 	if (!of_chosen)
 		return;
-	device_type = get_property(of_chosen, "linux,stdout-path", NULL);
+	device_type = of_get_property(of_chosen, "linux,stdout-path", NULL);
 	if (!device_type)
 		return;
 	stdout_node = of_find_node_by_path(device_type);
 	if (stdout_node) {
-		device_type = get_property(stdout_node, "device_type", NULL);
+		device_type = of_get_property(stdout_node, "device_type", NULL);
 		if (device_type && strcmp(device_type, "serial") == 0)
 			add_preferred_console("ttyPSC", 0, NULL);
 		of_node_put(stdout_node);
-- 
1.5.1.1

^ permalink raw reply related	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2007-04-24  3:53 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-04-13  7:14 [PATCH] [POWERPC] Rename last get_property calls Stephen Rothwell
2007-04-24  3:48 ` [PATCH 1/5] [POWERPC] Remove find_compatible_devices Stephen Rothwell
2007-04-24  3:49   ` [PATCH 2/5] [POWERPC] remove find_all_nodes Stephen Rothwell
2007-04-24  3:50   ` [PATCH 3/5] [POWERPC] Remove old interface find_path_device Stephen Rothwell
2007-04-24  3:51   ` [PATCH 4/5] [POWERPC] Remove old interface find_type_devices Stephen Rothwell
2007-04-24  3:53   ` [PATCH 5/5] [POWERPC] Remove old interface find_devices Stephen Rothwell

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).