diff options
| author | Tom Rini <[email protected]> | 2021-07-15 07:11:06 -0400 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2021-07-15 07:11:06 -0400 |
| commit | 18e7ebf7555203e26066c6264b2275c34e03632d (patch) | |
| tree | 6ea4a683e3c89b33c3d0c2568a544856641b601b /include | |
| parent | c11f5abce84f630c92304683d5bde3204c5612c4 (diff) | |
| parent | a4c577f981569bf34e997cd85618f922409d6b2f (diff) | |
Merge https://source.denx.de/u-boot/custodians/u-boot-marvell
- Turris_omnia/mox: SPI NOR and MTD related changes / fixes (Marek)
- a37xx: pci: Misc fixes / optimizations (Pali)
- Espressobin: Fix setting $fdtfile env & changes in MMC detection
(Pali)
- MMC: mmc_get_op_cond: Allow quiet detection of eMMC (Pali)
Diffstat (limited to 'include')
| -rw-r--r-- | include/mmc.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/mmc.h b/include/mmc.h index 6f943e78b74..0bf19de20e5 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 |
