svn commit: r283485 - stable/10/sys/dev/fdt

Ian Lepore ian at FreeBSD.org
Sun May 24 18:00:30 UTC 2015


Author: ian
Date: Sun May 24 18:00:29 2015
New Revision: 283485
URL: https://svnweb.freebsd.org/changeset/base/283485

Log:
  MFC r281371: Use OF_getencpropalloc() to handle endianess of the properties.

Modified:
  stable/10/sys/dev/fdt/fdt_pinctrl.c
Directory Properties:
  stable/10/   (props changed)

Modified: stable/10/sys/dev/fdt/fdt_pinctrl.c
==============================================================================
--- stable/10/sys/dev/fdt/fdt_pinctrl.c	Sun May 24 18:00:14 2015	(r283484)
+++ stable/10/sys/dev/fdt/fdt_pinctrl.c	Sun May 24 18:00:29 2015	(r283485)
@@ -46,7 +46,7 @@ fdt_pinctrl_configure(device_t client, u
 	char name[16];
 
 	snprintf(name, sizeof(name), "pinctrl-%u", index);
-	nconfigs = OF_getprop_alloc(ofw_bus_get_node(client), name,
+	nconfigs = OF_getencprop_alloc(ofw_bus_get_node(client), name,
 	    sizeof(*configs), (void **)&configs);
 	if (nconfigs < 0)
 		return (ENOENT);
@@ -122,12 +122,12 @@ pinctrl_configure_children(device_t pinc
 		if (!fdt_is_enabled(node))
 			continue;
 		pinctrl_configure_children(pinctrl, node);
-		nconfigs = OF_getencprop_alloc(node, "pinctrl-0", 
+		nconfigs = OF_getencprop_alloc(node, "pinctrl-0",
 		    sizeof(*configs), (void **)&configs);
 		if (nconfigs <= 0)
 			continue;
 		if (bootverbose) {
-			char name[32]; 
+			char name[32];
 			OF_getprop(node, "name", &name, sizeof(name));
 			printf("Processing %d pin-config node(s) in pinctrl-0 for %s\n",
 			    nconfigs, name);


More information about the svn-src-stable mailing list