Catch up with last-second name change.

This commit is contained in:
ian 2014-02-16 03:34:07 +00:00
parent 1431a5d9b9
commit 38d1d2ec37

View File

@ -237,7 +237,7 @@ fdt_depth_search_compatible(phandle_t start, const char *compat, int strict)
(strict == 0 || fdt_is_compatible_strict(node, compat))) {
return (node);
}
child = fdt_search_compatible(node, compat, strict);
child = fdt_depth_search_compatible(node, compat, strict);
if (child != 0)
return (child);
}