Lines Matching full:node

35 			      ulong driver_data, ofnode node,  in device_bind_common()  argument
66 dev->node = node; in device_bind_common()
83 if (uc->uc_drv->name && ofnode_valid(node)) in device_bind_common()
221 ulong driver_data, ofnode node, in device_bind_with_driver_data() argument
224 return device_bind_common(parent, drv, name, NULL, driver_data, node, in device_bind_with_driver_data()
237 const char *name, void *platdata, ofnode node, in device_bind_ofnode() argument
240 return device_bind_common(parent, drv, name, platdata, 0, node, 0, in device_bind_ofnode()
527 * @node: The ofnode for which a associated device should be looked up
531 static int device_find_by_ofnode(ofnode node, struct udevice **devp) in device_find_by_ofnode() argument
538 ret = uclass_find_device_by_ofnode(uc->uc_drv->id, node, in device_find_by_ofnode()
616 int device_get_child_by_of_offset(struct udevice *parent, int node, in device_get_child_by_of_offset() argument
623 ret = device_find_child_by_of_offset(parent, node, &dev); in device_get_child_by_of_offset()
828 ofnode node = ofnode_path(path); in dev_disable_by_path() local
836 ret = uclass_find_device_by_ofnode(uc->uc_drv->id, node, &dev); in dev_disable_by_path()
852 return ofnode_set_enabled(node, false); in dev_disable_by_path()
857 ofnode node = ofnode_path(path); in dev_enable_by_path() local
858 ofnode pnode = ofnode_get_parent(node); in dev_enable_by_path()
869 ret = ofnode_set_enabled(node, true); in dev_enable_by_path()
873 return lists_bind_fdt(parent, node, NULL, false); in dev_enable_by_path()