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;
* 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,
/* 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);