• Home
  • Raw
  • Download

Lines Matching refs:node

16 struct reset_control *__of_reset_control_get(struct device_node *node,
65 struct device_node *node, in __of_reset_control_get() argument
182 struct device_node *node, const char *id) in of_reset_control_get_exclusive() argument
184 return __of_reset_control_get(node, id, 0, false, false); in of_reset_control_get_exclusive()
207 struct device_node *node, const char *id) in of_reset_control_get_shared() argument
209 return __of_reset_control_get(node, id, 0, true, false); in of_reset_control_get_shared()
224 struct device_node *node, int index) in of_reset_control_get_exclusive_by_index() argument
226 return __of_reset_control_get(node, NULL, index, false, false); in of_reset_control_get_exclusive_by_index()
252 struct device_node *node, int index) in of_reset_control_get_shared_by_index() argument
254 return __of_reset_control_get(node, NULL, index, true, false); in of_reset_control_get_shared_by_index()
358 struct device_node *node, const char *id) in of_reset_control_get() argument
360 return of_reset_control_get_exclusive(node, id); in of_reset_control_get()
364 struct device_node *node, int index) in of_reset_control_get_by_index() argument
366 return of_reset_control_get_exclusive_by_index(node, index); in of_reset_control_get_by_index()
416 of_reset_control_array_get_exclusive(struct device_node *node) in of_reset_control_array_get_exclusive() argument
418 return of_reset_control_array_get(node, false, false); in of_reset_control_array_get_exclusive()
422 of_reset_control_array_get_shared(struct device_node *node) in of_reset_control_array_get_shared() argument
424 return of_reset_control_array_get(node, true, false); in of_reset_control_array_get_shared()
428 of_reset_control_array_get_optional_exclusive(struct device_node *node) in of_reset_control_array_get_optional_exclusive() argument
430 return of_reset_control_array_get(node, false, true); in of_reset_control_array_get_optional_exclusive()
434 of_reset_control_array_get_optional_shared(struct device_node *node) in of_reset_control_array_get_optional_shared() argument
436 return of_reset_control_array_get(node, true, true); in of_reset_control_array_get_optional_shared()