Replace the printf() instead of error().
It is occurred the compiler error with "undefined reference to 'error'".

Fixes: e0079fecd75b ("mmc: refacstor SD startup to make it easier to support 
new modes")

Signed-off-by: Jaehoon Chung <jh80.ch...@samsung.com>
---
 drivers/mmc/mmc.c | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/drivers/mmc/mmc.c b/drivers/mmc/mmc.c
index 55a53c2200..a5a521eec3 100644
--- a/drivers/mmc/mmc.c
+++ b/drivers/mmc/mmc.c
@@ -828,7 +828,7 @@ static int mmc_get_capabilities(struct mmc *mmc)
                return 0;
 
        if (!ext_csd) {
-               error("No ext_csd found!\n"); /* this should enver happen */
+               printf("No ext_csd found!\n"); /* this should enver happen */
                return -ENOTSUPP;
        }
 
@@ -1433,7 +1433,7 @@ static inline int bus_width(uint cap)
                return 4;
        if (cap == MMC_MODE_1BIT)
                return 1;
-       error("invalid bus witdh capability 0x%x\n", cap);
+       printf("invalid bus witdh capability 0x%x\n", cap);
        return 0;
 }
 
@@ -1638,7 +1638,7 @@ error:
                }
        }
 
-       error("unable to select a mode\n");
+       printf("unable to select a mode\n");
        return -ENOTSUPP;
 }
 
@@ -1844,7 +1844,7 @@ error:
                }
        }
 
-       error("unable to select a mode\n");
+       printf("unable to select a mode\n");
 
        return -ENOTSUPP;
 }
-- 
2.14.2

_______________________________________________
U-Boot mailing list
U-Boot@lists.denx.de
https://lists.denx.de/listinfo/u-boot

Reply via email to