svn commit: r328662 - head/sys/dev/uart
Andrew Turner
andrew at FreeBSD.org
Thu Feb 1 15:05:18 UTC 2018
Author: andrew
Date: Thu Feb 1 15:05:17 2018
New Revision: 328662
URL: https://svnweb.freebsd.org/changeset/base/328662
Log:
Disable EARLY_PRINTF from the Armada 3700 uart, it breaks when we want
to use EARLY_PRINTF on other SoCs.
Sponsored by: DARPA, AFRL
Modified:
head/sys/dev/uart/uart_dev_mvebu.c
Modified: head/sys/dev/uart/uart_dev_mvebu.c
==============================================================================
--- head/sys/dev/uart/uart_dev_mvebu.c Thu Feb 1 14:36:59 2018 (r328661)
+++ head/sys/dev/uart/uart_dev_mvebu.c Thu Feb 1 15:05:17 2018 (r328662)
@@ -107,6 +107,7 @@ __FBSDID("$FreeBSD$");
/*
* For debugging purposes
*/
+#if 0
#ifdef EARLY_PRINTF
#if defined(SOCDEV_PA) && defined(SOCDEV_VA)
#define UART_REG_OFFSET 0x12000
@@ -126,6 +127,7 @@ uart_mvebu_early_putc(int c)
}
early_putc_t *early_putc = uart_mvebu_early_putc;
+#endif
#endif
#endif
More information about the svn-src-all
mailing list