Lines Matching refs:name
40 n->name, n->avg_bw, n->peak_bw);
87 n->id, n->name, m->id, m->name);
93 n->id, n->name, n->id, n->name);
151 static struct icc_node *node_find_by_name(const char *name)
158 if (!strcmp(n->name, name))
420 struct icc_path *devm_of_icc_get(struct device *dev, const char *name)
428 path = of_icc_get(dev, name);
522 path->name = kasprintf(GFP_KERNEL, "%s-%s",
523 src_data->node->name, dst_data->node->name);
524 if (!path->name) {
537 * of_icc_get() - get a path handle from a DT node based on name
539 * @name: interconnect path name
551 struct icc_path *of_icc_get(struct device *dev, const char *name)
573 if (name) {
574 idx = of_property_match_string(np, "interconnect-names", name);
586 * @src: source node name
587 * @dst: destination node name
621 path->name = kasprintf(GFP_KERNEL, "%s-%s", src_node->name, dst_node->name);
622 if (!path->name) {
656 * icc_get_name() - Get name of the icc path
659 * This function is used by an interconnect consumer to get the name of the icc
669 return path->name;
803 kfree_const(path->name);