Re: [PATCH v6 21/25] spl: Convert NVMe to spl_load

2023-11-07 Thread Simon Glass
On Sun, 5 Nov 2023 at 19:26, Sean Anderson wrote: > > This converts the blk load method (used exclusively by NVMe) to use > spl_load. As a consequence, it also adds support for LOAD_FIT_FULL and > IMX images. > > Signed-off-by: Sean Anderson > --- > > Changes in v6: > - Fix invalid return from

[PATCH v6 21/25] spl: Convert NVMe to spl_load

2023-11-05 Thread Sean Anderson
This converts the blk load method (used exclusively by NVMe) to use spl_load. As a consequence, it also adds support for LOAD_FIT_FULL and IMX images. Signed-off-by: Sean Anderson --- Changes in v6: - Fix invalid return from spl_blk_load_image - Explicitly initialize load_info members Changes