mirror of
https://github.com/u-boot/u-boot.git
synced 2025-04-24 22:36:05 +00:00

If CONFIG_SYS_SKIP_UART_INIT is enabled, calculate the current baud rate and update the "console" environment variable. Signed-off-by: Jim Liu <JJLIU0@nuvoton.com>
11 lines
206 B
C
11 lines
206 B
C
/* SPDX-License-Identifier: GPL-2.0+ */
|
|
/*
|
|
* Copyright (c) 2023 Nuvoton Technology Corp.
|
|
*/
|
|
|
|
#ifndef _NUVOTON_UART_H
|
|
#define _NUVOTON_UART_H
|
|
|
|
void board_set_console(void);
|
|
|
|
#endif /* _NUVOTON_COMMON_H */
|