svn commit: r308698 - head/sys/arm/ti
Luiz Otavio O Souza
loos at FreeBSD.org
Tue Nov 15 21:18:56 UTC 2016
Author: loos
Date: Tue Nov 15 21:18:55 2016
New Revision: 308698
URL: https://svnweb.freebsd.org/changeset/base/308698
Log:
After r308533, the platform compatible string must be an exact match.
Use "ti,am33xx" instead of "ti,am335x", which gives an exact match in every
DTS we support.
This fixes the boot on TI SoCs after r308533.
Suggested by: gonzo
Sponsored by: Rubicon Communications, LLC (Netgate)
Modified:
head/sys/arm/ti/ti_machdep.c
Modified: head/sys/arm/ti/ti_machdep.c
==============================================================================
--- head/sys/arm/ti/ti_machdep.c Tue Nov 15 20:44:19 2016 (r308697)
+++ head/sys/arm/ti/ti_machdep.c Tue Nov 15 21:18:55 2016 (r308698)
@@ -124,5 +124,5 @@ static platform_method_t am335x_methods[
PLATFORMMETHOD_END,
};
-FDT_PLATFORM_DEF(am335x, "am335x", 0, "ti,am335x", 200);
+FDT_PLATFORM_DEF(am335x, "am335x", 0, "ti,am33xx", 200);
#endif
More information about the svn-src-all
mailing list