Date: Thu, 19 Oct 2017 20:52:17 +0000 (UTC) From: Emmanuel Vadot <manu@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r324771 - head/sys/arm/nvidia/tegra124 Message-ID: <201710192052.v9JKqHOV050509@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: manu Date: Thu Oct 19 20:52:17 2017 New Revision: 324771 URL: https://svnweb.freebsd.org/changeset/base/324771 Log: 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. Modified: head/sys/arm/nvidia/tegra124/tegra124_machdep.c Modified: head/sys/arm/nvidia/tegra124/tegra124_machdep.c ============================================================================== --- head/sys/arm/nvidia/tegra124/tegra124_machdep.c Thu Oct 19 20:42:46 2017 (r324770) +++ head/sys/arm/nvidia/tegra124/tegra124_machdep.c Thu Oct 19 20:52:17 2017 (r324771) @@ -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) @@ -135,6 +136,7 @@ tegra124_early_putc(int c) *UART_TX_REG = c; } early_putc_t *early_putc = tegra124_early_putc; +#endif #endif static platform_method_t tegra124_methods[] = {
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201710192052.v9JKqHOV050509>