Re: [PATCH] test: cmd: fdt: Drop unused fdt_test_header_get() fdt parameter

2023-03-14 Thread Simon Glass
Hi Marek, On Sat, 11 Mar 2023 at 09:29, Marek Vasut wrote: > > The 'fdt' parameter is not used anywhere in the function, drop it. > This also should fix the following compiler warning in sandbox_spl: > > test/cmd/fdt.c:1159:9: warning: 'fdt_test_header_get' accessing 4096 bytes in > a region of

[PATCH] test: cmd: fdt: Drop unused fdt_test_header_get() fdt parameter

2023-03-11 Thread Marek Vasut
The 'fdt' parameter is not used anywhere in the function, drop it. This also should fix the following compiler warning in sandbox_spl: test/cmd/fdt.c:1159:9: warning: 'fdt_test_header_get' accessing 4096 bytes in a region of size 256 [-Wstringop-overflow=] Signed-off-by: Marek Vasut --- Cc: Hei