diff options
| author | Tom Rini <[email protected]> | 2019-02-16 17:05:51 -0500 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2019-02-16 17:05:51 -0500 |
| commit | 7a2ab3778c0acae27edc01009c6ad9950a90634e (patch) | |
| tree | f7bb56bfd1134dfa40ee8b2b8287029035647197 /include | |
| parent | b89074f65047c4058741ed2bf3e6ff0c5af4c5bc (diff) | |
| parent | 261445dfafdce252f91fea16517aba5830dd1930 (diff) | |
Merge branch 'master' of git://git.denx.de/u-boot-sh
- Various MMC fixes
Diffstat (limited to 'include')
| -rw-r--r-- | include/mmc.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/include/mmc.h b/include/mmc.h index d84e4fca737..1f30f71d25f 100644 --- a/include/mmc.h +++ b/include/mmc.h @@ -690,6 +690,12 @@ int mmc_initialize(bd_t *bis); int mmc_init(struct mmc *mmc); int mmc_send_tuning(struct mmc *mmc, u32 opcode, int *cmd_error); +#if CONFIG_IS_ENABLED(MMC_UHS_SUPPORT) || \ + CONFIG_IS_ENABLED(MMC_HS200_SUPPORT) || \ + CONFIG_IS_ENABLED(MMC_HS400_SUPPORT) +int mmc_deinit(struct mmc *mmc); +#endif + /** * mmc_of_parse() - Parse the device tree to get the capabilities of the host * |
