diff options
author | ian <ian@FreeBSD.org> | 2014-02-16 03:34:07 +0000 |
---|---|---|
committer | ian <ian@FreeBSD.org> | 2014-02-16 03:34:07 +0000 |
commit | 38d1d2ec37f24acc18a00f00b5f72faee4d85c07 (patch) | |
tree | 0fc4ceaee47de66616ab6adeba302bbf7e0a843c | |
parent | 1431a5d9b96aac5493afedeca4f18b5461582def (diff) | |
download | FreeBSD-src-38d1d2ec37f24acc18a00f00b5f72faee4d85c07.zip FreeBSD-src-38d1d2ec37f24acc18a00f00b5f72faee4d85c07.tar.gz |
Catch up with last-second name change.
-rw-r--r-- | sys/dev/fdt/fdt_common.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/dev/fdt/fdt_common.c b/sys/dev/fdt/fdt_common.c index 64c28db..2651a3a 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); } |