From 4962bf3875c0f3f1b5de81e797a7b347b00a048d Mon Sep 17 00:00:00 2001 From: Daniel Leung Date: Wed, 29 Apr 2020 11:09:40 -0700 Subject: [PATCH] soc: intel_s1000: fix SMP build error During devicetree macro changes, LPSRAM_BOOT_VECTOR_ADDR pointed to another macro which was renamed to a non-existent one. Fix it so that SMP builds again. Fixes #24720 Signed-off-by: Daniel Leung --- soc/xtensa/intel_s1000/memory.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/soc/xtensa/intel_s1000/memory.h b/soc/xtensa/intel_s1000/memory.h index 6e7f42e7d6d..9aba12b4007 100644 --- a/soc/xtensa/intel_s1000/memory.h +++ b/soc/xtensa/intel_s1000/memory.h @@ -73,6 +73,6 @@ #define LPRAM_SIZE (DT_REG_SIZE(DT_NODELABEL(sram1))) /* Boot vector resideing in LP-SRAM for core #1 */ -#define LPSRAM_BOOT_VECTOR_ADDR (LP_SRAM_BASE + 0x08) +#define LPSRAM_BOOT_VECTOR_ADDR (LPRAM_BASE + 0x08) #endif /* __INC_MEMORY_H */