diff mbox series

ARM: dts: renesas: genmai: Fix partition size for QSPI NOR Flash

Message ID 20240914182948.94031-2-wsa+renesas@sang-engineering.com (mailing list archive)
State New
Delegated to: Geert Uytterhoeven
Headers show
Series ARM: dts: renesas: genmai: Fix partition size for QSPI NOR Flash | expand

Commit Message

Wolfram Sang Sept. 14, 2024, 6:28 p.m. UTC
Second partition was too large, looks like two digits got mixed up.
Fixes:

mtd: partition "user1" extends beyond the end of device "18000000.flash" -- size truncated to 0x4000000

Fixes: 30e0a8cf886c ("ARM: dts: renesas: genmai: Add FLASH nodes")
Signed-off-by: Wolfram Sang <wsa+renesas@sang-engineering.com>
---

As you can see, I got my Genmai board working again \o/

 arch/arm/boot/dts/renesas/r7s72100-genmai.dts | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

Wolfram Sang Sept. 14, 2024, 7:03 p.m. UTC | #1
On Sat, Sep 14, 2024 at 08:28:44PM +0200, Wolfram Sang wrote:
> Second partition was too large, looks like two digits got mixed up.
> Fixes:

Hmm, maybe this "Fixes:" is ambiguous... perhaps we should leave it out.

> 
> mtd: partition "user1" extends beyond the end of device "18000000.flash" -- size truncated to 0x4000000
diff mbox series

Patch

diff --git a/arch/arm/boot/dts/renesas/r7s72100-genmai.dts b/arch/arm/boot/dts/renesas/r7s72100-genmai.dts
index 63f9f679964b..c835d61fc20d 100644
--- a/arch/arm/boot/dts/renesas/r7s72100-genmai.dts
+++ b/arch/arm/boot/dts/renesas/r7s72100-genmai.dts
@@ -54,7 +54,7 @@  partition@0 {
 
 			partition@4000000 {
 				label = "user1";
-				reg = <0x04000000 0x40000000>;
+				reg = <0x04000000 0x04000000>;
 			};
 		};
 	};