mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-07 05:34:28 +00:00
e3d5d3ac5b
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>
12 lines
416 B
Makefile
12 lines
416 B
Makefile
# SPDX-License-Identifier: GPL-2.0+
|
|
|
|
ifdef CONFIG_SPL_BUILD
|
|
obj-$(CONFIG_ARCH_UNIPHIER_LD4) += debug-uart-ld4.o
|
|
obj-$(CONFIG_ARCH_UNIPHIER_PRO4) += debug-uart-pro4.o
|
|
obj-$(CONFIG_ARCH_UNIPHIER_SLD8) += debug-uart-sld8.o
|
|
obj-$(CONFIG_ARCH_UNIPHIER_PRO5) += debug-uart-pro5.o
|
|
obj-$(CONFIG_ARCH_UNIPHIER_PXS2) += debug-uart-pxs2.o
|
|
obj-$(CONFIG_ARCH_UNIPHIER_LD6B) += debug-uart-ld6b.o
|
|
endif
|
|
|
|
obj-y += debug-uart.o
|