Re: [PATCH] spl: mmc: Fix subsequent calls to spl_mmc_load with CONFIG_BLK

2023-10-18 Thread Tom Rini
On Sat, 07 Oct 2023 21:47:48 -0400, Sean Anderson wrote: > MMC devices do not have uclass platdata containing blk_descs, only their > child block devices do. Fortunately, we have a function just for this > purpose. This fixes subsequent calls to spl_mmc_load. > > Applied to u-boot/master, thank

[PATCH] spl: mmc: Fix subsequent calls to spl_mmc_load with CONFIG_BLK

2023-10-07 Thread Sean Anderson
MMC devices do not have uclass platdata containing blk_descs, only their child block devices do. Fortunately, we have a function just for this purpose. This fixes subsequent calls to spl_mmc_load. Fixes: bf28d9a6599 ("spl: mmc: Use correct MMC device when loading image") Signed-off-by: Sean Anders