diff options
author | Stephen Rothwell <sfr@canb.auug.org.au> | 2007-04-03 08:26:41 -0400 |
---|---|---|
committer | Paul Mackerras <paulus@samba.org> | 2007-04-12 13:55:19 -0400 |
commit | e2eb63927bfcb54232163bfec32440246fd44457 (patch) | |
tree | 596656edeb2332b5134d8236fa50b87f2c0ece29 /arch/powerpc/kernel/rtas_pci.c | |
parent | ceef87782a9452eeeca774e65d7f4e06455780a3 (diff) |
[POWERPC] Rename get_property to of_get_property: arch/powerpc
Signed-off-by: Stephen Rothwell <sfr@canb.auug.org.au>
Acked-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Signed-off-by: Paul Mackerras <paulus@samba.org>
Diffstat (limited to 'arch/powerpc/kernel/rtas_pci.c')
-rw-r--r-- | arch/powerpc/kernel/rtas_pci.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/arch/powerpc/kernel/rtas_pci.c b/arch/powerpc/kernel/rtas_pci.c index 1616a44ac608..f2286822be09 100644 --- a/arch/powerpc/kernel/rtas_pci.c +++ b/arch/powerpc/kernel/rtas_pci.c | |||
@@ -60,7 +60,7 @@ static int of_device_available(struct device_node * dn) | |||
60 | { | 60 | { |
61 | const char *status; | 61 | const char *status; |
62 | 62 | ||
63 | status = get_property(dn, "status", NULL); | 63 | status = of_get_property(dn, "status", NULL); |
64 | 64 | ||
65 | if (!status) | 65 | if (!status) |
66 | return 1; | 66 | return 1; |
@@ -177,7 +177,7 @@ struct pci_ops rtas_pci_ops = { | |||
177 | 177 | ||
178 | int is_python(struct device_node *dev) | 178 | int is_python(struct device_node *dev) |
179 | { | 179 | { |
180 | const char *model = get_property(dev, "model", NULL); | 180 | const char *model = of_get_property(dev, "model", NULL); |
181 | 181 | ||
182 | if (model && strstr(model, "Python")) | 182 | if (model && strstr(model, "Python")) |
183 | return 1; | 183 | return 1; |
@@ -247,7 +247,7 @@ static int phb_set_bus_ranges(struct device_node *dev, | |||
247 | const int *bus_range; | 247 | const int *bus_range; |
248 | unsigned int len; | 248 | unsigned int len; |
249 | 249 | ||
250 | bus_range = get_property(dev, "bus-range", &len); | 250 | bus_range = of_get_property(dev, "bus-range", &len); |
251 | if (bus_range == NULL || len < 2 * sizeof(int)) { | 251 | if (bus_range == NULL || len < 2 * sizeof(int)) { |
252 | return 1; | 252 | return 1; |
253 | } | 253 | } |
@@ -309,12 +309,12 @@ void __init find_and_init_phbs(void) | |||
309 | if (of_chosen) { | 309 | if (of_chosen) { |
310 | const int *prop; | 310 | const int *prop; |
311 | 311 | ||
312 | prop = get_property(of_chosen, | 312 | prop = of_get_property(of_chosen, |
313 | "linux,pci-probe-only", NULL); | 313 | "linux,pci-probe-only", NULL); |
314 | if (prop) | 314 | if (prop) |
315 | pci_probe_only = *prop; | 315 | pci_probe_only = *prop; |
316 | 316 | ||
317 | prop = get_property(of_chosen, | 317 | prop = of_get_property(of_chosen, |
318 | "linux,pci-assign-all-buses", NULL); | 318 | "linux,pci-assign-all-buses", NULL); |
319 | if (prop) | 319 | if (prop) |
320 | pci_assign_all_buses = *prop; | 320 | pci_assign_all_buses = *prop; |