Hi Mateusz, > In cases when MMC hadn't been initialized before, ie. by the user or > other subsystem, it was still uninitialized while UMS media capacity > check, leading to broken ums command. > > UMS has to initialize resources it uses. > > Tested on Samsung Goni. > > Signed-off-by: Mateusz Zalega <m.zal...@samsung.com> > Tested-by: Mateusz Zalega <m.zal...@samsung.com> > Acked-by: Lukasz Majewski <l.majew...@samsung.com> > Cc: Minkyu Kang <mk7.k...@samsung.com>
Applied to u-boot-dfu. THanks, > --- > Changes since v3: > - Added const attribute of ums_disk_init introduced type warnings. It > would take a lot of changes to MMC core code to fix it, so it was > dropped, even though ums_disk_init shouldn't and doesn't change > struct mmc it is passed. Changes since v4: > - added slightly more detailed commit message > --- > board/samsung/common/ums.c | 6 ++---- > 1 file changed, 2 insertions(+), 4 deletions(-) > > diff --git a/board/samsung/common/ums.c b/board/samsung/common/ums.c > index dc155ad..cebabe9 100644 > --- a/board/samsung/common/ums.c > +++ b/board/samsung/common/ums.c > @@ -66,11 +66,9 @@ static struct ums *ums_disk_init(struct mmc *mmc) > > struct ums *ums_init(unsigned int dev_num) > { > - struct mmc *mmc = NULL; > + struct mmc *mmc = find_mmc_device(dev_num); > > - mmc = find_mmc_device(dev_num); > - if (!mmc) > + if (!mmc || mmc_init(mmc)) > return NULL; > - > return ums_disk_init(mmc); > } -- Best regards, Lukasz Majewski Samsung R&D Institute Poland (SRPOL) | Linux Platform Group _______________________________________________ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot