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. Signed-off-by: Joakim Andersson <joerchan@gmail.com>
This commit is contained in:
parent
19571e8db7
commit
816b61552a
1 changed files with 1 additions and 1 deletions
|
@ -58,7 +58,7 @@
|
|||
};
|
||||
storage_partition: partition@3e2000 {
|
||||
label = "storage";
|
||||
reg = <0x003f0000 DT_SIZE_K(120)>;
|
||||
reg = <0x003e2000 DT_SIZE_K(120)>;
|
||||
};
|
||||
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue