diff options
author | Jaehoon Chung | 2021-05-31 08:31:50 +0900 |
---|---|---|
committer | Peng Fan | 2021-06-22 12:03:20 +0800 |
commit | d77d61ea1b21d93a5035719f82699bcbe8227364 (patch) | |
tree | cfbb101b7ebac8c0ab5edc0632d14817db8acbe5 /include/mmc.h | |
parent | 2da2335a18a1b7123da08c325fdcd7960c0f0642 (diff) |
mmc: mmc-uclass: change to static about dm function
Change to static about dm function.
They can be used with wrapper functions.
Signed-off-by: Jaehoon Chung <jh80.chung@samsung.com>
Diffstat (limited to 'include/mmc.h')
-rw-r--r-- | include/mmc.h | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/include/mmc.h b/include/mmc.h index 7f8ba2b017e..6f943e78b74 100644 --- a/include/mmc.h +++ b/include/mmc.h @@ -539,18 +539,6 @@ struct dm_mmc_ops { #define mmc_get_ops(dev) ((struct dm_mmc_ops *)(dev)->driver->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); -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); -int dm_mmc_wait_dat0(struct udevice *dev, int state, int timeout_us); -int dm_mmc_host_power_cycle(struct udevice *dev); -int dm_mmc_deferred_probe(struct udevice *dev); -int dm_mmc_reinit(struct udevice *dev); -int dm_mmc_get_b_max(struct udevice *dev, void *dst, lbaint_t blkcnt); - /* Transition functions for compatibility */ int mmc_set_ios(struct mmc *mmc); int mmc_getcd(struct mmc *mmc); |