Lines Matching refs:prop_name
1196 const char *prop_name, int index, in parse_prop_cells() argument
1202 if (strcmp(prop_name, list_name)) in parse_prop_cells()
1214 const char *prop_name, int index) \
1216 return parse_prop_cells(np, prop_name, index, name, cells); \
1250 const char *prop_name, int index, in parse_suffix_prop_cells() argument
1256 if (strcmp_suffix(prop_name, suffix)) in parse_suffix_prop_cells()
1259 if (of_parse_phandle_with_args(np, prop_name, cells_name, index, in parse_suffix_prop_cells()
1268 const char *prop_name, int index) \
1270 return parse_suffix_prop_cells(np, prop_name, index, suffix, cells); \
1295 const char *prop_name, int index);
1331 const char *prop_name, int index) in parse_gpios() argument
1333 if (!strcmp_suffix(prop_name, ",nr-gpios")) in parse_gpios()
1336 return parse_suffix_prop_cells(np, prop_name, index, "-gpios", in parse_gpios()
1341 const char *prop_name, int index) in parse_iommu_maps() argument
1343 if (strcmp(prop_name, "iommu-map")) in parse_iommu_maps()
1346 return of_parse_phandle(np, prop_name, (index * 4) + 1); in parse_iommu_maps()
1350 const char *prop_name, int index) in parse_gpio_compat() argument
1354 if (strcmp(prop_name, "gpio") && strcmp(prop_name, "gpios")) in parse_gpio_compat()
1364 if (of_parse_phandle_with_args(np, prop_name, "#gpio-cells", index, in parse_gpio_compat()
1372 const char *prop_name, int index) in parse_interrupts() argument
1379 if (strcmp(prop_name, "interrupts") && in parse_interrupts()
1380 strcmp(prop_name, "interrupts-extended")) in parse_interrupts()
1442 static int of_link_property(struct device_node *con_np, const char *prop_name) in of_link_property() argument
1456 while ((phandle = s->parse_prop(con_np, prop_name, i))) { in of_link_property()