Lines Matching refs:prop_name

1138 					    const char *prop_name, int index,  in parse_prop_cells()  argument
1144 if (strcmp(prop_name, list_name)) in parse_prop_cells()
1156 const char *prop_name, int index) \
1158 return parse_prop_cells(np, prop_name, index, name, cells); \
1192 const char *prop_name, int index, in parse_suffix_prop_cells() argument
1198 if (strcmp_suffix(prop_name, suffix)) in parse_suffix_prop_cells()
1201 if (of_parse_phandle_with_args(np, prop_name, cells_name, index, in parse_suffix_prop_cells()
1210 const char *prop_name, int index) \
1212 return parse_suffix_prop_cells(np, prop_name, index, suffix, cells); \
1237 const char *prop_name, int index);
1274 const char *prop_name, int index) in parse_gpios() argument
1276 if (!strcmp_suffix(prop_name, ",nr-gpios")) in parse_gpios()
1279 return parse_suffix_prop_cells(np, prop_name, index, "-gpios", in parse_gpios()
1284 const char *prop_name, int index) in parse_iommu_maps() argument
1286 if (strcmp(prop_name, "iommu-map")) in parse_iommu_maps()
1289 return of_parse_phandle(np, prop_name, (index * 4) + 1); in parse_iommu_maps()
1293 const char *prop_name, int index) in parse_gpio_compat() argument
1297 if (strcmp(prop_name, "gpio") && strcmp(prop_name, "gpios")) in parse_gpio_compat()
1307 if (of_parse_phandle_with_args(np, prop_name, "#gpio-cells", index, in parse_gpio_compat()
1315 const char *prop_name, int index) in parse_interrupts() argument
1322 if (strcmp(prop_name, "interrupts") && in parse_interrupts()
1323 strcmp(prop_name, "interrupts-extended")) in parse_interrupts()
1386 static int of_link_property(struct device_node *con_np, const char *prop_name) in of_link_property() argument
1400 while ((phandle = s->parse_prop(con_np, prop_name, i))) { in of_link_property()