Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 16 Feb 2014 03:34:08 +0000 (UTC)
From:      Ian Lepore <ian@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r261958 - head/sys/dev/fdt
Message-ID:  <201402160334.s1G3Y8Ph079759@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
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);
 	}



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201402160334.s1G3Y8Ph079759>