From b7f9d71cf4895d83608321823c4ba4a862404ef6 Mon Sep 17 00:00:00 2001 From: Luiz Otavio O Souza Date: Tue, 15 Nov 2016 21:18:55 +0000 Subject: [PATCH] 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) --- sys/arm/ti/ti_machdep.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/arm/ti/ti_machdep.c b/sys/arm/ti/ti_machdep.c index f9d83890ba86..1d4e20053bbe 100644 --- a/sys/arm/ti/ti_machdep.c +++ b/sys/arm/ti/ti_machdep.c @@ -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