Re: [PATCH 3/8] spl: fit: Pass FIT context via a structure pointer

2020-12-18 Thread Simon Glass
On Tue, 15 Dec 2020 at 17:09, Alexandru Gagniuc wrote: > > Several loose arguments describe the FIT image. They are thus related, > and it makes sense to pass them together, in a structure. Examples > include the FIT blob pointer, offset to FDT nodes, and the offset to > external data. > > Use a s

[PATCH 3/8] spl: fit: Pass FIT context via a structure pointer

2020-12-15 Thread Alexandru Gagniuc
Several loose arguments describe the FIT image. They are thus related, and it makes sense to pass them together, in a structure. Examples include the FIT blob pointer, offset to FDT nodes, and the offset to external data. Use a spl_fit_info structure to group these parameters. Signed-off-by: Alex