Re: [U-Boot] [PATCH] fdt: restore board_fdt_blob_setup() declaration

2018-11-22 Thread sjg
On 28 October 2018 at 05:41, Baruch Siach wrote: > Commit 90c08fa038451d (fdt: Add device tree memory bindings) removed the > prototype declaration of board_fdt_blob_setup(), most likely by mistake. > This didn't break the build because the only file calling this function > (lib/fdtdec.c)

Re: [U-Boot] [PATCH] fdt: restore board_fdt_blob_setup() declaration

2018-11-15 Thread Simon Glass
On 28 October 2018 at 05:41, Baruch Siach wrote: > Commit 90c08fa038451d (fdt: Add device tree memory bindings) removed the > prototype declaration of board_fdt_blob_setup(), most likely by mistake. > This didn't break the build because the only file calling this function > (lib/fdtdec.c)

[U-Boot] [PATCH] fdt: restore board_fdt_blob_setup() declaration

2018-10-28 Thread Baruch Siach
Commit 90c08fa038451d (fdt: Add device tree memory bindings) removed the prototype declaration of board_fdt_blob_setup(), most likely by mistake. This didn't break the build because the only file calling this function (lib/fdtdec.c) provides a local weak definition. Restore the declaration. Cc: