From 59c4192cd3ea4df1a84b8624049ee232a84db2c4 Mon Sep 17 00:00:00 2001 From: Emmanuel Vadot Date: Thu, 19 Oct 2017 20:52:17 +0000 Subject: [PATCH] tegra: Do not define early printf function Since tegra is now in GENERIC, do not enable the early printf function as it can conflict with others. --- sys/arm/nvidia/tegra124/tegra124_machdep.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/sys/arm/nvidia/tegra124/tegra124_machdep.c b/sys/arm/nvidia/tegra124/tegra124_machdep.c index 55b411dd7914..ee65805738e3 100644 --- a/sys/arm/nvidia/tegra124/tegra124_machdep.c +++ b/sys/arm/nvidia/tegra124/tegra124_machdep.c @@ -122,6 +122,7 @@ tegra124_cpu_reset(platform_t plat) * option SOCDEV_VA=0x70000000 * option EARLY_PRINTF */ +#if 0 #ifdef EARLY_PRINTF static void tegra124_early_putc(int c) @@ -136,6 +137,7 @@ tegra124_early_putc(int c) } early_putc_t *early_putc = tegra124_early_putc; #endif +#endif static platform_method_t tegra124_methods[] = { PLATFORMMETHOD(platform_attach, tegra124_attach),