svn commit: r261958 - head/sys/dev/fdt

Ian Lepore ian at FreeBSD.org
Sun Feb 16 03:34:08 UTC 2014


Author: ian
Date: Sun Feb 16 03:34:07 2014
New Revision: 261958
URL: http://svnweb.freebsd.org/changeset/base/261958

Log:
  Catch up with last-second name change.

Modified:
  head/sys/dev/fdt/fdt_common.c

Modified: head/sys/dev/fdt/fdt_common.c
==============================================================================
--- head/sys/dev/fdt/fdt_common.c	Sun Feb 16 03:30:22 2014	(r261957)
+++ head/sys/dev/fdt/fdt_common.c	Sun Feb 16 03:34:07 2014	(r261958)
@@ -237,7 +237,7 @@ fdt_depth_search_compatible(phandle_t st
 		    (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);
 	}


More information about the svn-src-head mailing list