trace: undefined reference to `trace_early_init'
authorHeinrich Schuchardt <xypron.glpk@gmx.de>
Sat, 1 Jun 2019 22:53:24 +0000 (00:53 +0200)
committerSimon Glass <sjg@chromium.org>
Wed, 10 Jul 2019 22:52:58 +0000 (16:52 -0600)
commit7ef8e9b09a74567c529f168a4da5c1d5cffd58c2
treeb639da7399c12763a912d24cb52ac7203b72044c
parent54e1223aa4ca5d65fe3c6497e92bee4453aeddac
trace: undefined reference to `trace_early_init'

Compiling with TRACE but without TRACE_EARLY results in an error
aarch64-linux-gnu-ld.bfd:
common/built-in.o:(.rodata.init_sequence_f+0x10):
undefined reference to `trace_early_init'

trace_early_init() should not be called if CONFIG_TRACE_EARLY is not
defined.

Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
Reviewed-by: Simon Glass <sjg@chromium.org>
common/board_f.c