From owner-svn-src-all@FreeBSD.ORG Sun Feb 16 03:34:08 2014 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 742F4D85; Sun, 16 Feb 2014 03:34:08 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 6025117B7; Sun, 16 Feb 2014 03:34:08 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s1G3Y8iM079760; Sun, 16 Feb 2014 03:34:08 GMT (envelope-from ian@svn.freebsd.org) Received: (from ian@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s1G3Y8Ph079759; Sun, 16 Feb 2014 03:34:08 GMT (envelope-from ian@svn.freebsd.org) Message-Id: <201402160334.s1G3Y8Ph079759@svn.freebsd.org> From: Ian Lepore Date: Sun, 16 Feb 2014 03:34:08 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r261958 - head/sys/dev/fdt X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 16 Feb 2014 03:34:08 -0000 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); }