soc: espressif: fix SOC series name macro on loader.c
Update macro CONFIG_SOC to CONFIG_SOC_SERIES.
Signed-off-by: Almir Okato <almir.okato@espressif.com>
diff --git a/soc/xtensa/espressif_esp32/esp32s3/loader.c b/soc/xtensa/espressif_esp32/esp32s3/loader.c
index d653076..ab6da24 100644
--- a/soc/xtensa/espressif_esp32/esp32s3/loader.c
+++ b/soc/xtensa/espressif_esp32/esp32s3/loader.c
@@ -20,7 +20,7 @@
#ifdef CONFIG_BOOTLOADER_MCUBOOT
#define BOOT_LOG_INF(_fmt, ...) \
- ets_printf("[" CONFIG_SOC "] [INF] " _fmt "\n\r", ##__VA_ARGS__)
+ ets_printf("[" CONFIG_SOC_SERIES "] [INF] " _fmt "\n\r", ##__VA_ARGS__)
#define HDR_ATTR __attribute__((section(".entry_addr"))) __attribute__((used))