[PATCH 2/2] mmc: mmc-uclass: Assign devnum as alias index in SPL too if CONFIG_SPL_DM_SEQ_ALIAS is enabled
Jaehoon Chung
jh80.chung at samsung.com
Tue Mar 16 22:40:38 CET 2021
On 3/15/21 7:48 PM, Aswath Govindraju wrote:
> Assign the nodes alias index as the device number in SPL too, if
> CONFIG_SPL_DM_SEQ_ALIAS is enabled.
>
> Signed-off-by: Aswath Govindraju <a-govindraju at ti.com>
Reviewed-by: Jaehoon Chung <jh80.chung at samsung.com>
Best Regards,
Jaehoon Chung
> ---
> drivers/mmc/mmc-uclass.c | 10 +++++-----
> 1 file changed, 5 insertions(+), 5 deletions(-)
>
> diff --git a/drivers/mmc/mmc-uclass.c b/drivers/mmc/mmc-uclass.c
> index 53eabc9e612d..67fcba3c207c 100644
> --- a/drivers/mmc/mmc-uclass.c
> +++ b/drivers/mmc/mmc-uclass.c
> @@ -387,11 +387,11 @@ int mmc_bind(struct udevice *dev, struct mmc *mmc, const struct mmc_config *cfg)
>
> if (!mmc_get_ops(dev))
> return -ENOSYS;
> -#ifndef CONFIG_SPL_BUILD
> - /* Use the fixed index with aliase node's index */
> - ret = dev_read_alias_seq(dev, &devnum);
> - debug("%s: alias ret=%d, devnum=%d\n", __func__, ret, devnum);
> -#endif
> + if (IS_ENABLED(CONFIG_SPL_DM_SEQ_ALIAS)) {
> + /* Use the fixed index with aliase node's index */
> + ret = dev_read_alias_seq(dev, &devnum);
> + debug("%s: alias ret=%d, devnum=%d\n", __func__, ret, devnum);
> + }
>
> ret = blk_create_devicef(dev, "mmc_blk", "blk", IF_TYPE_MMC,
> devnum, 512, 0, &bdev);
>
More information about the U-Boot
mailing list