summaryrefslogtreecommitdiff
path: root/lib/Kconfig
diff options
context:
space:
mode:
authorSimon Glass <sjg@chromium.org>2023-01-16 00:15:44 +0300
committerTom Rini <trini@konsulko.com>2023-02-11 20:22:34 +0300
commitc33425c6f960944ba88104f281217de5a89a5562 (patch)
tree8b68dfe1fd467fc994eb091550fe43358a283f83 /lib/Kconfig
parent64d445a3b7018dac5131cba9f5d308c64a45e95f (diff)
downloadu-boot-c33425c6f960944ba88104f281217de5a89a5562.tar.xz
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 <sjg@chromium.org>
Diffstat (limited to 'lib/Kconfig')
-rw-r--r--lib/Kconfig2
1 files changed, 1 insertions, 1 deletions
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.