Fix the spelling of OF_getencprop. It will fix the data correctly for the

endian of the CPU so there is no need to call fdt32_to_cpu.

Sponsored by:	ABT Systems Ltd
This commit is contained in:
Andrew Turner 2016-02-15 17:14:10 +00:00
parent 96922be6b5
commit 740be1dc58
2 changed files with 4 additions and 6 deletions

View File

@ -58,7 +58,6 @@ __FBSDID("$FreeBSD$");
#include <dev/iicbus/iiconf.h>
#include <dev/iicbus/iicbus.h>
#include <dev/fdt/fdt_common.h>
#include <dev/ofw/ofw_bus.h>
#include <dev/ofw/ofw_bus_subr.h>
@ -225,9 +224,9 @@ mv_twsi_attach(device_t dev)
/* Attach child devices onto iicbus. */
for (child = OF_child(iicbusnode); child != 0; child = OF_peer(child)) {
/* Get slave address. */
error = OF_getprop(child, "i2c-address", &paddr, sizeof(paddr));
error = OF_getencprop(child, "i2c-address", &paddr, sizeof(paddr));
if (error == -1)
error = OF_getprop(child, "reg", &paddr, sizeof(paddr));
error = OF_getencprop(child, "reg", &paddr, sizeof(paddr));
if (error == -1)
continue;
@ -239,10 +238,10 @@ mv_twsi_attach(device_t dev)
if (bootverbose)
device_printf(dev, "adding a device %s at %d.\n",
dname, fdt32_to_cpu(paddr));
dname, paddr);
childdev = BUS_ADD_CHILD(sc->iicbus, 0, dname, -1);
devi = IICBUS_IVAR(childdev);
devi->addr = fdt32_to_cpu(paddr);
devi->addr = paddr;
}
attach_end:

View File

@ -58,7 +58,6 @@ __FBSDID("$FreeBSD$");
#include <dev/iicbus/iiconf.h>
#include <dev/iicbus/iicbus.h>
#include <dev/fdt/fdt_common.h>
#include <dev/ofw/ofw_bus.h>
#include <dev/ofw/ofw_bus_subr.h>