mirror of
https://github.com/u-boot/u-boot.git
synced 2025-05-08 19:11:53 +00:00
ARM: uniphier: remove unused init code for CONFIG_DEBUG_UART
debug_uart_init() is called from spl_board_init(), which is only compiled for SPL. For U-boot proper, _debug_uart_init() is unreachable, so dropped by the dead code elimination. Now that 64-bit SoCs of this SoC family no longer support SPL, debug-uart-ld20.c is never compiled. Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
This commit is contained in:
parent
3b7fc3ff31
commit
e3d5d3ac5b
4 changed files with 2 additions and 44 deletions
|
@ -28,6 +28,7 @@ static void _debug_uart_putc(int c)
|
|||
|
||||
void _debug_uart_init(void)
|
||||
{
|
||||
#ifdef CONFIG_SPL_BUILD
|
||||
void __iomem *base = (void __iomem *)CONFIG_DEBUG_UART_BASE;
|
||||
unsigned int divisor;
|
||||
|
||||
|
@ -61,12 +62,6 @@ void _debug_uart_init(void)
|
|||
case UNIPHIER_LD6B_ID:
|
||||
divisor = uniphier_ld6b_debug_uart_init();
|
||||
break;
|
||||
#endif
|
||||
#if defined(CONFIG_ARCH_UNIPHIER_LD11) || defined(CONFIG_ARCH_UNIPHIER_LD20)
|
||||
case UNIPHIER_LD11_ID:
|
||||
case UNIPHIER_LD20_ID:
|
||||
divisor = uniphier_ld20_debug_uart_init();
|
||||
break;
|
||||
#endif
|
||||
default:
|
||||
return;
|
||||
|
@ -75,5 +70,6 @@ void _debug_uart_init(void)
|
|||
writel(UART_LCR_WLEN8 << 8, base + UNIPHIER_UART_LCR_MCR);
|
||||
|
||||
writel(divisor, base + UNIPHIER_UART_LDR);
|
||||
#endif
|
||||
}
|
||||
DEBUG_UART_FUNCS
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue