diff options
author | Thomas Chou <thomas@wytron.com.tw> | 2015-11-03 14:18:27 +0800 |
---|---|---|
committer | Thomas Chou <thomas@wytron.com.tw> | 2015-11-06 12:56:46 +0800 |
commit | 933529ce15a49a25c00dffd4c1988ce9206a9226 (patch) | |
tree | 14e69a1afd8e434b525f9a2935c20b45dae11e51 /drivers | |
parent | 9208d7eba1c2f027cdd06e6ce6ec90d3889764bf (diff) | |
download | u-boot-933529ce15a49a25c00dffd4c1988ce9206a9226.tar.gz u-boot-933529ce15a49a25c00dffd4c1988ce9206a9226.tar.bz2 u-boot-933529ce15a49a25c00dffd4c1988ce9206a9226.zip |
altera_jtag_uart: Adjust the declaration of debug_uart_init()
Follow commit 97b059730218 ("debug_uart: Adjust the declaration of
debug_uart_init()")
Signed-off-by: Thomas Chou <thomas@wytron.com.tw>
Reviewed-by: Marek Vasut <marex@denx.de>
Reviewed-by: Chin Liang See <clsee@altera.com>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/serial/altera_jtag_uart.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/serial/altera_jtag_uart.c b/drivers/serial/altera_jtag_uart.c index 767603ca03..c77bea3a1e 100644 --- a/drivers/serial/altera_jtag_uart.c +++ b/drivers/serial/altera_jtag_uart.c @@ -130,7 +130,7 @@ U_BOOT_DRIVER(altera_jtaguart) = { #include <debug_uart.h> -void debug_uart_init(void) +static inline void _debug_uart_init(void) { } |