From 1570ef2863ea7ecea5dad9cfdfeadeaeb943e361 Mon Sep 17 00:00:00 2001 From: Yong Cong Sin Date: Sat, 25 May 2024 11:50:38 +0800 Subject: [PATCH] debug: remove PRINTK from EXCEPTION_STACK_TRACE The `PRINTK` was required for `EXCEPTION_STACK_TRACE` because it's initial implementation for x86 in #6653 uses `printk()`. We are using `LOG_ERR()` now, so this is not required anymore. Signed-off-by: Yong Cong Sin --- subsys/debug/Kconfig | 1 - 1 file changed, 1 deletion(-) diff --git a/subsys/debug/Kconfig b/subsys/debug/Kconfig index cd9303262eb..40eb73bb370 100644 --- a/subsys/debug/Kconfig +++ b/subsys/debug/Kconfig @@ -382,7 +382,6 @@ config SYMTAB config EXCEPTION_STACK_TRACE bool "Attempt to print stack traces upon exceptions" default y - depends on PRINTK depends on DEBUG_INFO depends on !OMIT_FRAME_POINTER help