From: Simon Glass Date: Sun, 15 Jan 2023 21:15:44 +0000 (-0700) Subject: trace: Reduce the default for TRACE_EARLY_CALL_DEPTH_LIMIT X-Git-Tag: baikal/mips/sdk5.8.2~5^2~49^2~18 X-Git-Url: https://git.baikalelectronics.ru/?a=commitdiff_plain;h=9e2b2dc3eb23c9878253f63ecdf0a422606c8b18;p=uboot.git trace: Reduce the default for TRACE_EARLY_CALL_DEPTH_LIMIT This is a silly value at present, since U-Boot's call depth never reaches 200. Fix it. Signed-off-by: Simon Glass --- diff --git a/lib/Kconfig b/lib/Kconfig index 06c873c2bd..83e5edd73b 100644 --- a/lib/Kconfig +++ b/lib/Kconfig @@ -368,7 +368,7 @@ config TRACE_EARLY_SIZE config TRACE_EARLY_CALL_DEPTH_LIMIT int "Early trace call depth limit" depends on TRACE_EARLY - default 200 + default 15 help Sets the maximum call depth up to which function calls are recorded during early tracing.