summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMasahiro Yamada <yamada.masahiro@socionext.com>2020-01-23 15:54:01 +0900
committerPeng Fan <peng.fan@nxp.com>2020-02-17 14:55:04 +0800
commit76ca2d13035c8e649866546abc122cf46ed4e598 (patch)
tree102e2e831a52616e89991abcc70491365b0d6d66
parent8adf50effeda52bb84b2c2aa66bcebf2920778e9 (diff)
downloadu-boot-76ca2d13035c8e649866546abc122cf46ed4e598.tar.gz
mmc: remove unneeded forward declarations
These functions are defined before the callers. Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com> Reviewed-by: Peng Fan <peng.fan@nxp.com>
-rw-r--r--drivers/mmc/mmc.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/drivers/mmc/mmc.c b/drivers/mmc/mmc.c
index 2eb5e9d7aa..b50fcbf6cf 100644
--- a/drivers/mmc/mmc.c
+++ b/drivers/mmc/mmc.c
@@ -24,10 +24,6 @@
#define DEFAULT_CMD6_TIMEOUT_MS 500
static int mmc_set_signal_voltage(struct mmc *mmc, uint signal_voltage);
-static int mmc_power_cycle(struct mmc *mmc);
-#if !CONFIG_IS_ENABLED(MMC_TINY)
-static int mmc_select_mode_and_width(struct mmc *mmc, uint card_caps);
-#endif
#if !CONFIG_IS_ENABLED(DM_MMC)