boards: frdm_rw612: Fix flash size

Flash size property is in bits, not bytes. The size
of this flash is 512 Mbits, fix this mistake.

Signed-off-by: Declan Snyder <declan.snyder@nxp.com>
This commit is contained in:
Declan Snyder 2024-07-07 11:56:17 -05:00 committed by Alberto Escolar
commit 33c87c8e8b

View file

@ -60,7 +60,7 @@
w25q512jvfiq: w25q512jvfiq@0 { w25q512jvfiq: w25q512jvfiq@0 {
compatible = "nxp,imx-flexspi-nor"; compatible = "nxp,imx-flexspi-nor";
reg = <0>; reg = <0>;
size = <(DT_SIZE_M(512) / 8)>; size = <DT_SIZE_M(64 * 8)>;
status = "okay"; status = "okay";
erase-block-size = <4096>; erase-block-size = <4096>;
write-block-size = <1>; write-block-size = <1>;