]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
[POWERPC] Rename last get_property calls
authorStephen Rothwell <sfr@canb.auug.org.au>
Fri, 13 Apr 2007 07:14:22 +0000 (17:14 +1000)
committerPaul Mackerras <paulus@samba.org>
Tue, 24 Apr 2007 11:31:40 +0000 (21:31 +1000)
These got added recently.

Signed-off-by: Stephen Rothwell <sfr@canb.auug.org.au>
Signed-off-by: Paul Mackerras <paulus@samba.org>
arch/powerpc/kernel/of_device.c
arch/powerpc/platforms/52xx/efika.c

index e8aa1f3675b7df719a1c081a3eb532f0b46d51d8..0c8ea7659d928701bc92fcfff78685d81dc99453 100644 (file)
@@ -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,
index 04200848696925d2265e11c849a3e69a5b1b164f..0eceb1fc267049672461329a23d35b0aa9df221d 100644 (file)
@@ -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);