summaryrefslogtreecommitdiff
path: root/include/mmc.h
diff options
context:
space:
mode:
authorPali Rohár <pali@kernel.org>2021-07-14 17:37:29 +0300
committerStefan Roese <sr@denx.de>2021-07-15 11:53:11 +0300
commita4c577f981569bf34e997cd85618f922409d6b2f (patch)
tree6ea4a683e3c89b33c3d0c2568a544856641b601b /include/mmc.h
parent42ba56691ccae5a33da13a023a342fef4fa8f086 (diff)
downloadu-boot-a4c577f981569bf34e997cd85618f922409d6b2f.tar.xz
mmc: mmc_get_op_cond: Allow quiet detection of eMMC
Add a new 'quiet' argument to mmc_get_op_cond() function which avoids printing error message when SD/eMMC card is not detected. Espressobin and mx6cuboxi boards use this function for detecting presence of eMMC and therefore it is expected and normal that eMMC does not have to be connected. So error message "Card did not respond to voltage select!" should be skipped in this case as it is not an error. Signed-off-by: Pali Rohár <pali@kernel.org> Reviewed-by: Stefan Roese <sr@denx.de> Acked-by: Jaehoon Chung <jh80.chung@samsung.com>
Diffstat (limited to 'include/mmc.h')
-rw-r--r--include/mmc.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/include/mmc.h b/include/mmc.h
index 6f943e78b7..0bf19de20e 100644
--- a/include/mmc.h
+++ b/include/mmc.h
@@ -900,9 +900,10 @@ int mmc_set_bkops_enable(struct mmc *mmc);
* the presence of SD/eMMC when no card detect logic is available.
*
* @param mmc Pointer to a MMC device struct
+ * @param quiet Be quiet, do not print error messages when card is not detected.
* @return 0 on success, <0 on error.
*/
-int mmc_get_op_cond(struct mmc *mmc);
+int mmc_get_op_cond(struct mmc *mmc, bool quiet);
/**
* Start device initialization and return immediately; it does not block on