Lines Matching full:compatible
1026 * fdt_node_check_compatible - check a node's compatible property
1029 * @compatible: string to match against
1032 * @compatible property with the given string as one of its elements,
1036 * 0, if the node has a 'compatible' property listing the given string
1037 * 1, if the node has a 'compatible' property, but it does not list
1039 * -FDT_ERR_NOTFOUND, if the given node has no 'compatible' property
1047 const char *compatible);
1050 * fdt_node_offset_by_compatible - find nodes with a given 'compatible' value
1053 * @compatible: 'compatible' string to match against
1056 * node after startoffset, which has a 'compatible' property which
1057 * lists the given compatible string; or if startoffset is -1, the
1062 * offset = fdt_node_offset_by_compatible(fdt, -1, compatible);
1065 * offset = fdt_node_offset_by_compatible(fdt, offset, compatible);
1084 const char *compatible);
1094 * "compatible" property.