Date: Thu, 1 Feb 2018 15:05:17 +0000 (UTC) From: Andrew Turner <andrew@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r328662 - head/sys/dev/uart Message-ID: <201802011505.w11F5HxA071946@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201802011505.w11F5HxA071946>