svn commit: r239553 - head/sys/arm/ti
Tim Kientzle
kientzle at FreeBSD.org
Wed Aug 22 05:15:00 UTC 2012
Author: kientzle
Date: Wed Aug 22 05:14:59 2012
New Revision: 239553
URL: http://svn.freebsd.org/changeset/base/239553
Log:
After r239366, fix the ti_edma3.c driver to use the
exact name as used in the FDT.
Modified:
head/sys/arm/ti/ti_edma3.c
Modified: head/sys/arm/ti/ti_edma3.c
==============================================================================
--- head/sys/arm/ti/ti_edma3.c Wed Aug 22 03:00:57 2012 (r239552)
+++ head/sys/arm/ti/ti_edma3.c Wed Aug 22 05:14:59 2012 (r239553)
@@ -142,7 +142,7 @@ static struct {
static int
ti_edma3_probe(device_t dev)
{
- if (!ofw_bus_is_compatible(dev, "ti,edma"))
+ if (!ofw_bus_is_compatible(dev, "ti,edma3"))
return (ENXIO);
device_set_desc(dev, "TI EDMA Controller");
More information about the svn-src-head
mailing list