···515515EXPORT_SYMBOL_GPL(icc_set_tag);516516517517/**518518+ * icc_get_name() - Get name of the icc path519519+ * @path: reference to the path returned by icc_get()520520+ *521521+ * This function is used by an interconnect consumer to get the name of the icc522522+ * path.523523+ *524524+ * Returns a valid pointer on success, or NULL otherwise.525525+ */526526+const char *icc_get_name(struct icc_path *path)527527+{528528+ if (!path)529529+ return NULL;530530+531531+ return path->name;532532+}533533+EXPORT_SYMBOL_GPL(icc_get_name);534534+535535+/**518536 * icc_set_bw() - set bandwidth constraints on an interconnect path519537 * @path: reference to the path returned by icc_get()520538 * @avg_bw: average bandwidth in kilobytes per second