Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 11 Nov 2016 21:29:48 +0000 (UTC)
From:      Justin Hibbits <jhibbits@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r308560 - head/sys/dev/fdt
Message-ID:  <201611112129.uABLTmgA047221@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: jhibbits
Date: Fri Nov 11 21:29:48 2016
New Revision: 308560
URL: https://svnweb.freebsd.org/changeset/base/308560

Log:
  Replace another fdt_is_compatible() call.

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

Modified: head/sys/dev/fdt/fdt_powerpc.c
==============================================================================
--- head/sys/dev/fdt/fdt_powerpc.c	Fri Nov 11 21:01:45 2016	(r308559)
+++ head/sys/dev/fdt/fdt_powerpc.c	Fri Nov 11 21:29:48 2016	(r308560)
@@ -112,7 +112,7 @@ fdt_fixup_fman(phandle_t root)
 	 * That frequency is equal to /soc node bus-frequency.
 	 */
 	for (node = OF_child(node); node != 0; node = OF_peer(node)) {
-		if (fdt_is_compatible(node, "fsl,fman") == 0)
+		if (ofw_bus_node_is_compatible(node, "fsl,fman") == 0)
 			continue;
 
 		if (OF_setprop(node, "clock-frequency", (void *)&freq,



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