Re: [PATCH] spl: mmc: Use correct MMC device when loading image

2022-07-11 Thread Harald Seiler
Hi, On Mon, 2022-07-11 at 12:18 +0200, Quentin Schulz wrote: > Hi Harald, > > On 7/6/22 12:58, Harald Seiler wrote: > > When attempting to load images from multiple MMC devices in sequence, > > spl_mmc_load() chooses the wrong device from the second attempt onwards. > > > > The reason is that

Re: [PATCH] spl: mmc: Use correct MMC device when loading image

2022-07-11 Thread Quentin Schulz
Hi Harald, On 7/6/22 12:58, Harald Seiler wrote: When attempting to load images from multiple MMC devices in sequence, spl_mmc_load() chooses the wrong device from the second attempt onwards. The reason is that MMC initialization is only done on its first call and spl_mmc_load() will then

Re: [PATCH] spl: mmc: Use correct MMC device when loading image

2022-07-07 Thread Marek Vasut
On 7/6/22 12:58, Harald Seiler wrote: When attempting to load images from multiple MMC devices in sequence, spl_mmc_load() chooses the wrong device from the second attempt onwards. The reason is that MMC initialization is only done on its first call and spl_mmc_load() will then continue using

[PATCH] spl: mmc: Use correct MMC device when loading image

2022-07-06 Thread Harald Seiler
When attempting to load images from multiple MMC devices in sequence, spl_mmc_load() chooses the wrong device from the second attempt onwards. The reason is that MMC initialization is only done on its first call and spl_mmc_load() will then continue using this same device for all future calls.