Lines Matching refs:prop_name

1165 					    const char *prop_name, int index,  in parse_prop_cells()  argument
1171 if (strcmp(prop_name, list_name)) in parse_prop_cells()
1183 const char *prop_name, int index) \
1185 return parse_prop_cells(np, prop_name, index, name, cells); \
1219 const char *prop_name, int index, in parse_suffix_prop_cells() argument
1225 if (strcmp_suffix(prop_name, suffix)) in parse_suffix_prop_cells()
1228 if (of_parse_phandle_with_args(np, prop_name, cells_name, index, in parse_suffix_prop_cells()
1237 const char *prop_name, int index) \
1239 return parse_suffix_prop_cells(np, prop_name, index, suffix, cells); \
1262 const char *prop_name, int index);
1298 const char *prop_name, int index) in parse_gpios() argument
1300 if (!strcmp_suffix(prop_name, ",nr-gpios")) in parse_gpios()
1303 return parse_suffix_prop_cells(np, prop_name, index, "-gpios", in parse_gpios()
1308 const char *prop_name, int index) in parse_iommu_maps() argument
1310 if (strcmp(prop_name, "iommu-map")) in parse_iommu_maps()
1313 return of_parse_phandle(np, prop_name, (index * 4) + 1); in parse_iommu_maps()
1317 const char *prop_name, int index) in parse_gpio_compat() argument
1321 if (strcmp(prop_name, "gpio") && strcmp(prop_name, "gpios")) in parse_gpio_compat()
1331 if (of_parse_phandle_with_args(np, prop_name, "#gpio-cells", index, in parse_gpio_compat()
1339 const char *prop_name, int index) in parse_interrupts() argument
1346 if (strcmp(prop_name, "interrupts") && in parse_interrupts()
1347 strcmp(prop_name, "interrupts-extended")) in parse_interrupts()
1409 static int of_link_property(struct device_node *con_np, const char *prop_name) in of_link_property() argument
1423 while ((phandle = s->parse_prop(con_np, prop_name, i))) { in of_link_property()