svn commit: r324771 - head/sys/arm/nvidia/tegra124

Emmanuel Vadot manu at FreeBSD.org
Thu Oct 19 20:52:18 UTC 2017


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[] = {


More information about the svn-src-head mailing list