Add an error-return log to the call in mmc_init_device()

Signed-off-by: Simon Glass <[email protected]>
---

 drivers/mmc/mmc.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/mmc/mmc.c b/drivers/mmc/mmc.c
index 9644aa7aa43..eece4784288 100644
--- a/drivers/mmc/mmc.c
+++ b/drivers/mmc/mmc.c
@@ -3153,7 +3153,7 @@ int mmc_init_device(int num)
        if (uclass_get_device_by_seq(UCLASS_MMC, num, &dev)) {
                ret = uclass_get_device(UCLASS_MMC, num, &dev);
                if (ret)
-                       return ret;
+                       return log_msg_ret("ini", ret);
        }
 
        m = mmc_get_mmc_dev(dev);
-- 
2.34.1

Reply via email to