Home | History | Annotate | Download | only in ofw

Lines Matching defs:compatible

176  * This routine checks an OFW node's "compatible" entry to see if
206 proplen = OF_getproplen(phandle, "compatible");
213 if (OF_getprop(phandle, "compatible", prop, proplen) != proplen) {
232 * for a matching "compatible" entry matching the supplied OFW node,
234 * from the "compatible" property was matched, which more weight given
263 proplen = OF_getproplen(phandle, "compatible");
270 if (OF_getprop(phandle, "compatible", prop, proplen) != proplen) {
286 * for a "compatible" entry matching the supplied OFW node.
311 proplen = OF_getproplen(phandle, "compatible");
318 if (OF_getprop(phandle, "compatible", prop, proplen) != proplen) {
412 * Find a child node that is compatible with str. Recurses, starting at node.
417 const char * compatible[] = { str, NULL };
421 if (of_compatible(child, compatible))