Skip to content

Commit

Permalink
dts: fix frdm_kw41z ram size issue
Browse files Browse the repository at this point in the history
frdm_kw41z ram size is 96k not 128k(starting from 0x20000000)

fixing: #66154

Signed-off-by: Hake Huang <hake.huang@oss.nxp.com>
  • Loading branch information
hakehuang authored and carlescufi committed Jan 4, 2024
1 parent 68581ca commit 3d78316
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dts/arm/nxp/nxp_kw41z.dtsi
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@

sram0: memory@20000000 {
compatible = "mmio-sram";
reg = <0x20000000 DT_SIZE_K(128)>;
reg = <0x20000000 DT_SIZE_K(96)>;
};

/* Dummy pinctrl node, filled with pin mux options at board level */
Expand Down

0 comments on commit 3d78316

Please sign in to comment.