aboutsummaryrefslogtreecommitdiffstats
path: root/arch/powerpc/kernel/of_device.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/kernel/of_device.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/kernel/of_device.c')
-rw-r--r--arch/powerpc/kernel/of_device.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/powerpc/kernel/of_device.c b/arch/powerpc/kernel/of_device.c
index e8aa1f3675b7..0c8ea7659d92 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,
132 ofdev->node->name, ofdev->node->type); 132 ofdev->node->name, ofdev->node->type);
133 133
134 /* Get compatible property if any */ 134 /* Get compatible property if any */
135 compat = get_property(ofdev->node, "compatible", &cplen); 135 compat = of_get_property(ofdev->node, "compatible", &cplen);
136 if (!compat) 136 if (!compat)
137 return csize; 137 return csize;
138 138
@@ -194,7 +194,7 @@ int of_device_uevent(struct device *dev,
194 * it's not really legal to split it out with commas. We split it 194 * it's not really legal to split it out with commas. We split it
195 * up using a number of environment variables instead. */ 195 * up using a number of environment variables instead. */
196 196
197 compat = get_property(ofdev->node, "compatible", &cplen); 197 compat = of_get_property(ofdev->node, "compatible", &cplen);
198 while (compat && *compat && cplen > 0) { 198 while (compat && *compat && cplen > 0) {
199 if (add_uevent_var(envp, num_envp, &i, 199 if (add_uevent_var(envp, num_envp, &i,
200 buffer, buffer_size, &length, 200 buffer, buffer_size, &length,