From: Jan Kiszka <[email protected]> Callers of find_mmc_device are generally processing and informing about errors already, e.g.
=> mmc dev 2 MMC Device 2 not found no mmc device at slot 2 Signed-off-by: Jan Kiszka <[email protected]> --- CC: Peng Fan <[email protected]> CC: Jaehoon Chung <[email protected]> --- drivers/mmc/mmc-uclass.c | 2 +- drivers/mmc/mmc_legacy.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/mmc/mmc-uclass.c b/drivers/mmc/mmc-uclass.c index 698530088fe..ec16899f92e 100644 --- a/drivers/mmc/mmc-uclass.c +++ b/drivers/mmc/mmc-uclass.c @@ -319,7 +319,7 @@ struct mmc *find_mmc_device(int dev_num) if (ret) { #if !defined(CONFIG_XPL_BUILD) || defined(CONFIG_SPL_LIBCOMMON_SUPPORT) - printf("MMC Device %d not found\n", dev_num); + dev_dbg(dev, "MMC Device %d not found\n", dev_num); #endif return NULL; } diff --git a/drivers/mmc/mmc_legacy.c b/drivers/mmc/mmc_legacy.c index 8f8ba34be71..573521842f6 100644 --- a/drivers/mmc/mmc_legacy.c +++ b/drivers/mmc/mmc_legacy.c @@ -45,7 +45,7 @@ struct mmc *find_mmc_device(int dev_num) } #if !defined(CONFIG_XPL_BUILD) || defined(CONFIG_SPL_LIBCOMMON_SUPPORT) - printf("MMC Device %d not found\n", dev_num); + dev_dbg(dev, "MMC Device %d not found\n", dev_num); #endif return NULL; -- 2.47.3
