Re: [PATCH v2 1/3] sandbox: fix dram_init()

2025-06-10 Thread Ilias Apalodimas
On Sun, 8 Jun 2025 at 10:54, Heinrich Schuchardt wrote: > > dram_init() must not overwrite the value of gd->ram_buf set by > setup_ram_buf() for main U-Boot or board_init_f() for SPL. > > Signed-off-by: Heinrich Schuchardt I am not an expert in sandbox, but this looks ok Acked-by: Ilias Apalodim

[PATCH v2 1/3] sandbox: fix dram_init()

2025-06-08 Thread Heinrich Schuchardt
dram_init() must not overwrite the value of gd->ram_buf set by setup_ram_buf() for main U-Boot or board_init_f() for SPL. Signed-off-by: Heinrich Schuchardt --- v2: no change --- board/sandbox/sandbox.c | 1 - 1 file changed, 1 deletion(-) diff --git a/board/sandbox/sandbox.c b/board/sa