Lines Matching refs:stem
1507 * @stem_name: stem of property names that specify phandles' arguments count
1948 int id, const char *stem, int stem_len)
1952 strncpy(ap->stem, stem, stem_len);
1953 ap->stem[stem_len] = 0;
1955 pr_debug("adding DT alias:%s: stem=%s id=%i node=%pOF\n",
1956 ap->alias, ap->stem, ap->id, np);
2011 * the 'stem' string */
2019 /* Allocate an alias_prop with enough space for the stem */
2032 * @stem: Alias stem of the given device_node
2035 * device_node and alias stem.
2039 int of_alias_get_id(struct device_node *np, const char *stem)
2046 if (strcmp(app->stem, stem) != 0)
2063 * @stem: Alias stem of the given device_node
2068 * device match structures and alias stem.
2074 const char *stem, unsigned long *bitmap,
2084 pr_debug("%s: Looking for stem: %s\n", __func__, stem);
2086 pr_debug("%s: stem: %s, id: %d\n",
2087 __func__, app->stem, app->id);
2089 if (strcmp(app->stem, stem) != 0) {
2090 pr_debug("%s: stem comparison didn't pass %s\n",
2091 __func__, app->stem);
2114 * of_alias_get_highest_id - Get highest alias id for the given stem
2115 * @stem: Alias stem to be examined
2118 * given alias stem. It returns the alias id if found.
2120 int of_alias_get_highest_id(const char *stem)
2127 if (strcmp(app->stem, stem) != 0)