From ae0021a6432475a889c5dbdbbf5626f3900d0077 Mon Sep 17 00:00:00 2001 From: Joakim Andersson Date: Wed, 31 Jul 2024 11:57:38 +0200 Subject: [PATCH] boards: nucleo_u5a5zj_q: Fix storage address Fix start address of storage partition. Address did not match reg address of devicetree node, and the size of the storage partition would make it exceed flash region. (cherry picked from commit 816b61552a6b22e606884ab3e338c1e61afb64ff) Original-Signed-off-by: Joakim Andersson GitOrigin-RevId: 816b61552a6b22e606884ab3e338c1e61afb64ff Cr-Build-Id: 8740450565536499009 Cr-Build-Url: https://cr-buildbucket.appspot.com/build/8740450565536499009 Change-Id: Icc4aa51d4abc56e1f522cc9720ec356f61c42280 Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/third_party/zephyr/+/5761294 Tested-by: Jeremy Bettis Commit-Queue: Jeremy Bettis Tested-by: ChromeOS Prod (Robot) Reviewed-by: Jeremy Bettis --- boards/st/nucleo_u5a5zj_q/nucleo_u5a5zj_q.dts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/boards/st/nucleo_u5a5zj_q/nucleo_u5a5zj_q.dts b/boards/st/nucleo_u5a5zj_q/nucleo_u5a5zj_q.dts index c9296ccab97d7a..a9907afe61429f 100644 --- a/boards/st/nucleo_u5a5zj_q/nucleo_u5a5zj_q.dts +++ b/boards/st/nucleo_u5a5zj_q/nucleo_u5a5zj_q.dts @@ -58,7 +58,7 @@ }; storage_partition: partition@3e2000 { label = "storage"; - reg = <0x003f0000 DT_SIZE_K(120)>; + reg = <0x003e2000 DT_SIZE_K(120)>; }; };