Date: Tue, 15 Nov 2016 21:18:55 +0000 (UTC) From: Luiz Otavio O Souza <loos@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r308698 - head/sys/arm/ti Message-ID: <201611152118.uAFLItux061809@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201611152118.uAFLItux061809>