diff options
author | Arthur Heymans <arthur@aheymans.xyz> | 2017-05-12 21:16:41 +0200 |
---|---|---|
committer | Nico Huber <nico.h@gmx.de> | 2017-09-23 11:06:25 +0000 |
commit | b29078e4015bbc3e8cf00ba64f0799c087546563 (patch) | |
tree | 57c64e181ce902a4babcd7b031f699f6db5d93bd /src/include | |
parent | 1850aa6df6a324960bd0873277660d84562cdb61 (diff) |
mb/*/*: Remove rtc nvram configurable baud rate
There have been discussions about removing this since it does not seem
to be used much and only creates troubles for boards without defaults,
not to mention that it was configurable on many boards that do not
even feature uart.
It is still possible to configure the baudrate through the Kconfig
option.
Change-Id: I71698d9b188eeac73670b18b757dff5fcea0df41
Signed-off-by: Arthur Heymans <arthur@aheymans.xyz>
Reviewed-on: https://review.coreboot.org/19682
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Nico Huber <nico.h@gmx.de>
Diffstat (limited to 'src/include')
-rw-r--r-- | src/include/console/uart.h | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/src/include/console/uart.h b/src/include/console/uart.h index 744eb625f4..0dccd00d43 100644 --- a/src/include/console/uart.h +++ b/src/include/console/uart.h @@ -23,11 +23,6 @@ * baudrate generator. */ unsigned int uart_platform_refclk(void); -/* Return the baudrate determined from option_table, or when that is - * not used, CONFIG_TTYS0_BAUD. - */ -unsigned int default_baudrate(void); - /* Returns the divisor value for a given baudrate. * The formula to satisfy is: * refclk / divisor = baudrate * oversample |