Lines Matching refs:prop_name

1144 					    const char *prop_name, int index,  in parse_prop_cells()  argument
1150 if (strcmp(prop_name, list_name)) in parse_prop_cells()
1162 const char *prop_name, int index) \
1164 return parse_prop_cells(np, prop_name, index, name, cells); \
1198 const char *prop_name, int index, in parse_suffix_prop_cells() argument
1204 if (strcmp_suffix(prop_name, suffix)) in parse_suffix_prop_cells()
1207 if (of_parse_phandle_with_args(np, prop_name, cells_name, index, in parse_suffix_prop_cells()
1216 const char *prop_name, int index) \
1218 return parse_suffix_prop_cells(np, prop_name, index, suffix, cells); \
1239 const char *prop_name, int index);
1269 const char *prop_name, int index) in parse_gpios() argument
1271 if (!strcmp_suffix(prop_name, ",nr-gpios")) in parse_gpios()
1274 return parse_suffix_prop_cells(np, prop_name, index, "-gpios", in parse_gpios()
1279 const char *prop_name, int index) in parse_iommu_maps() argument
1281 if (strcmp(prop_name, "iommu-map")) in parse_iommu_maps()
1284 return of_parse_phandle(np, prop_name, (index * 4) + 1); in parse_iommu_maps()
1288 const char *prop_name, int index) in parse_gpio_compat() argument
1292 if (strcmp(prop_name, "gpio") && strcmp(prop_name, "gpios")) in parse_gpio_compat()
1302 if (of_parse_phandle_with_args(np, prop_name, "#gpio-cells", index, in parse_gpio_compat()
1310 const char *prop_name, int index) in parse_interrupts() argument
1317 if (strcmp(prop_name, "interrupts") && in parse_interrupts()
1318 strcmp(prop_name, "interrupts-extended")) in parse_interrupts()
1376 static int of_link_property(struct device_node *con_np, const char *prop_name) in of_link_property() argument
1391 while ((phandle = s->parse_prop(con_np, prop_name, i))) { in of_link_property()