svn commit: r261947 - head/sys/arm/freescale
Ian Lepore
ian at FreeBSD.org
Sat Feb 15 21:59:01 UTC 2014
Author: ian
Date: Sat Feb 15 21:59:00 2014
New Revision: 261947
URL: http://svnweb.freebsd.org/changeset/base/261947
Log:
Sweep up a couple crumbs left over from the imx6->fsl renaming.
Modified:
head/sys/arm/freescale/fsl_ocotp.c
Modified: head/sys/arm/freescale/fsl_ocotp.c
==============================================================================
--- head/sys/arm/freescale/fsl_ocotp.c Sat Feb 15 21:21:57 2014 (r261946)
+++ head/sys/arm/freescale/fsl_ocotp.c Sat Feb 15 21:59:00 2014 (r261947)
@@ -56,6 +56,7 @@ static struct ocotp_softc *ocotp_sc;
static inline uint32_t
RD4(struct ocotp_softc *sc, bus_size_t off)
{
+
return (bus_read_4(sc->mem_res, off));
}
@@ -111,11 +112,11 @@ ocotp_probe(device_t dev)
if (!ofw_bus_status_okay(dev))
return (ENXIO);
- if (ofw_bus_is_compatible(dev, "fsl,fslq-ocotp") == 0)
+ if (ofw_bus_is_compatible(dev, "fsl,imx6q-ocotp") == 0)
return (ENXIO);
device_set_desc(dev,
- "Freescale i.MX6 On-Chip One-Time-Programmable Memory");
+ "Freescale On-Chip One-Time-Programmable Memory");
return (BUS_PROBE_DEFAULT);
}
More information about the svn-src-all
mailing list