Lines Matching refs:prop_name

1094  * @prop_name:	Name of property to be parsed. Expected to hold phandle values
1110 const char *prop_name, int index,
1116 if (strcmp(prop_name, list_name))
1128 const char *prop_name, int index) \
1130 return parse_prop_cells(np, prop_name, index, name, cells); \
1148 * @prop_name: Name of property to be parsed. Expected to hold phandle values
1164 const char *prop_name, int index,
1170 if (strcmp_suffix(prop_name, suffix))
1173 if (of_parse_phandle_with_args(np, prop_name, cells_name, index,
1182 const char *prop_name, int index) \
1184 return parse_suffix_prop_cells(np, prop_name, index, suffix, cells); \
1193 * @parse_prop.prop_name: Name of property holding a phandle value
1209 const char *prop_name, int index);
1245 const char *prop_name, int index)
1247 if (!strcmp_suffix(prop_name, ",nr-gpios"))
1250 return parse_suffix_prop_cells(np, prop_name, index, "-gpios",
1255 const char *prop_name, int index)
1257 if (strcmp(prop_name, "iommu-map"))
1260 return of_parse_phandle(np, prop_name, (index * 4) + 1);
1264 const char *prop_name, int index)
1268 if (strcmp(prop_name, "gpio") && strcmp(prop_name, "gpios"))
1278 if (of_parse_phandle_with_args(np, prop_name, "#gpio-cells", index,
1286 const char *prop_name, int index)
1293 if (strcmp(prop_name, "interrupts") &&
1294 strcmp(prop_name, "interrupts-extended"))
1301 const char *prop_name,
1305 if (index > 0 || strcmp(prop_name, "remote-endpoint"))
1355 * @prop_name: Name of property to be parsed
1357 * This function checks if the property @prop_name that is present in the
1359 * that list phandles to suppliers. If @prop_name isn't one, this function
1362 * If @prop_name is one, this function attempts to create fwnode links from the
1364 * listed in @prop_name.
1371 static int of_link_property(struct device_node *con_np, const char *prop_name)
1385 while ((phandle = s->parse_prop(con_np, prop_name, i))) {