Message ID | 20240914182948.94031-2-wsa+renesas@sang-engineering.com (mailing list archive) |
---|---|
State | Mainlined |
Commit | a822f371daa15e8a501374dcff24c0594a84ee19 |
Delegated to: | Geert Uytterhoeven |
Headers | show |
Series | ARM: dts: renesas: genmai: Fix partition size for QSPI NOR Flash | expand |
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
On Sat, Sep 14, 2024 at 9:03 PM Wolfram Sang <wsa+renesas@sang-engineering.com> wrote: > 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. I like Fixes: ;-) Reviewed-by: Geert Uytterhoeven <geert+renesas@glider.be> i.e. will queue in renesas-devel for v6.13. Gr{oetje,eeting}s, Geert
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>; }; }; };
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(-)