Lines Matching refs:prop_name
1191 * @prop_name: Name of property to be parsed. Expected to hold phandle values
1207 const char *prop_name, int index,
1213 if (strcmp(prop_name, list_name))
1225 const char *prop_name, int index) \
1227 return parse_prop_cells(np, prop_name, index, name, cells); \
1245 * @prop_name: Name of property to be parsed. Expected to hold phandle values
1261 const char *prop_name, int index,
1267 if (strcmp_suffix(prop_name, suffix))
1270 if (of_parse_phandle_with_args(np, prop_name, cells_name, index,
1279 const char *prop_name, int index) \
1281 return parse_suffix_prop_cells(np, prop_name, index, suffix, cells); \
1290 * @parse_prop.prop_name: Name of property holding a phandle value
1302 const char *prop_name, int index);
1333 const char *prop_name, int index)
1335 if (!strcmp_suffix(prop_name, ",nr-gpios"))
1338 return parse_suffix_prop_cells(np, prop_name, index, "-gpios",
1343 const char *prop_name, int index)
1345 if (strcmp(prop_name, "iommu-map"))
1348 return of_parse_phandle(np, prop_name, (index * 4) + 1);
1386 * @prop_name: Name of property to be parsed
1388 * This function checks if the property @prop_name that is present in the
1390 * that list phandles to suppliers. If @prop_name isn't one, this function
1393 * If @prop_name is one, this function attempts to create device links from the
1395 * @prop_name.
1402 const char *prop_name)
1418 while ((phandle = s->parse_prop(con_np, prop_name, i))) {