aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorJean-Jacques Hiblot <jjhiblot@ti.com>2019-07-02 10:53:50 +0200
committerPeng Fan <peng.fan@nxp.com>2019-07-15 10:16:49 +0800
commitc5bda37589683ea5d26424ec75c2474226f4dd62 (patch)
treeb154d15a7433cf06c2ef447b99899bb11547c3f7 /include
parentdb52e19ced0ad7e4d4fb3160dcc201eaf820aa8c (diff)
downloadu-boot-c5bda37589683ea5d26424ec75c2474226f4dd62.zip
u-boot-c5bda37589683ea5d26424ec75c2474226f4dd62.tar.gz
u-boot-c5bda37589683ea5d26424ec75c2474226f4dd62.tar.bz2
Revert "mmc: Add a new callback function to perform the 74 clocks cycle sequence"
This reverts commit 318a7a576bc49aa8b4207e694d3fbd48c663d6ac. The last and only user of this callback had been the omap_hsmmc driver. It is not used anymore. Removing the callback. Signed-off-by: Jean-Jacques Hiblot <jjhiblot@ti.com>
Diffstat (limited to 'include')
-rw-r--r--include/mmc.h10
1 files changed, 0 insertions, 10 deletions
diff --git a/include/mmc.h b/include/mmc.h
index 2be3e91..7f95c35 100644
--- a/include/mmc.h
+++ b/include/mmc.h
@@ -419,14 +419,6 @@ struct dm_mmc_ops {
int (*set_ios)(struct udevice *dev);
/**
- * send_init_stream() - send the initialization stream: 74 clock cycles
- * This is used after power up before sending the first command
- *
- * @dev: Device to update
- */
- void (*send_init_stream)(struct udevice *dev);
-
- /**
* get_cd() - See whether a card is present
*
* @dev: Device to check
@@ -472,7 +464,6 @@ struct dm_mmc_ops {
int dm_mmc_send_cmd(struct udevice *dev, struct mmc_cmd *cmd,
struct mmc_data *data);
int dm_mmc_set_ios(struct udevice *dev);
-void dm_mmc_send_init_stream(struct udevice *dev);
int dm_mmc_get_cd(struct udevice *dev);
int dm_mmc_get_wp(struct udevice *dev);
int dm_mmc_execute_tuning(struct udevice *dev, uint opcode);
@@ -480,7 +471,6 @@ int dm_mmc_wait_dat0(struct udevice *dev, int state, int timeout);
/* Transition functions for compatibility */
int mmc_set_ios(struct mmc *mmc);
-void mmc_send_init_stream(struct mmc *mmc);
int mmc_getcd(struct mmc *mmc);
int mmc_getwp(struct mmc *mmc);
int mmc_execute_tuning(struct mmc *mmc, uint opcode);