From a41679c945652e0631c4b0fb97b29c2ee2084f2f Mon Sep 17 00:00:00 2001 From: Ian Lepore Date: Sun, 16 Feb 2014 03:34:07 +0000 Subject: [PATCH] Catch up with last-second name change. --- sys/dev/fdt/fdt_common.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/dev/fdt/fdt_common.c b/sys/dev/fdt/fdt_common.c index 64c28db21281..2651a3a1a1cd 100644 --- a/sys/dev/fdt/fdt_common.c +++ b/sys/dev/fdt/fdt_common.c @@ -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); }