From 5682a7f09e1863c3f6cca863efaf223eb3139028 Mon Sep 17 00:00:00 2001 From: Daniel Leung Date: Mon, 21 Apr 2025 13:15:08 -0700 Subject: [PATCH] logging: backend/xtensa_sim: more generic enabling condition Instead of using individual SoC kconfigs to determine whether to enable the Xtensa simulator logging backend, simply use CONFIG_SIMULATOR_XTENSA. Signed-off-by: Daniel Leung --- subsys/logging/backends/Kconfig.xtensa_sim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/subsys/logging/backends/Kconfig.xtensa_sim b/subsys/logging/backends/Kconfig.xtensa_sim index e3c35b83da6..69bb1379e25 100644 --- a/subsys/logging/backends/Kconfig.xtensa_sim +++ b/subsys/logging/backends/Kconfig.xtensa_sim @@ -4,7 +4,7 @@ config LOG_BACKEND_XTENSA_SIM bool "Xtensa simulator backend" depends on SIMULATOR_XTENSA - default y if SOC_XTENSA_SAMPLE_CONTROLLER || SOC_XTENSA_DC233C + default y if SIMULATOR_XTENSA select LOG_BACKEND_SUPPORTS_FORMAT_TIMESTAMP help Enable backend in xtensa simulator