[PATCH 4/4] mmc: Make "MMC Device not found" a debug output
Jan Kiszka <[email protected]>
| Newsgroups | org.u-boot-project.lists.u-boot |
|---|---|
| Message-ID | <f0eb5e71d6a53ee22c622ecfef8849ace1c12ce2.1787304541.git.jan.kiszka@siemens.com> |
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..cd930807802 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); + debug("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..2a4a8a83fb3 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); + debug("MMC Device %d not found\n", dev_num); #endif return NULL; -- 2.47.3