diff options
author | Stefan Reinauer <reinauer@chromium.org> | 2012-12-11 12:49:32 -0800 |
---|---|---|
committer | Stefan Reinauer <stefan.reinauer@coreboot.org> | 2012-12-12 00:27:10 +0100 |
commit | 3600e960b603a610064c6024c275e149944df1ca (patch) | |
tree | 831b1d8f9b34f0edf4dc79bcceaad6b10568b37f /src/Kconfig | |
parent | de48f0fd4213f8d0e2c71cbd3929e629fd76eb96 (diff) | |
download | coreboot-3600e960b603a610064c6024c275e149944df1ca.tar.xz |
Fix UART8250 console prototypes
and disable IO mapped UARTs on ARMV7 per default
Change-Id: I712c4677cbc8519323970556718f9bb6327d83c8
Signed-off-by: Stefan Reinauer <reinauer@google.com>
Reviewed-on: http://review.coreboot.org/2021
Reviewed-by: Ronald G. Minnich <rminnich@gmail.com>
Tested-by: build bot (Jenkins)
Diffstat (limited to 'src/Kconfig')
-rw-r--r-- | src/Kconfig | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/Kconfig b/src/Kconfig index d005d839bf..0a94ed8c37 100644 --- a/src/Kconfig +++ b/src/Kconfig @@ -261,7 +261,8 @@ source src/console/Kconfig # This should default to N and be set by SuperI/O drivers that have an UART config HAVE_UART_IO_MAPPED bool - default y + default y if ARCH_X86 + default n if ARCH_ARMV7 config HAVE_UART_MEMORY_MAPPED bool |