diff options
| author | Marek Vasut <[email protected]> | 2024-02-20 09:36:23 +0100 |
|---|---|---|
| committer | Jaehoon Chung <[email protected]> | 2024-04-15 15:19:12 +0900 |
| commit | a3b2786651c7966ea9038f16c97f401406bdf7d3 (patch) | |
| tree | 55173e58de2767d6bab0c495eaeac4a63d480cdb /include | |
| parent | ee6cee125a2bee4d1f9fa488f0a24928cf68c1d4 (diff) | |
mmc: Drop unused mmc_send_tuning() cmd_error parameter
The cmd_error parameter is not used, remove it.
Signed-off-by: Marek Vasut <[email protected]>
Diffstat (limited to 'include')
| -rw-r--r-- | include/mmc.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/mmc.h b/include/mmc.h index 9aef31ea5de..8df14130edd 100644 --- a/include/mmc.h +++ b/include/mmc.h @@ -795,7 +795,7 @@ int mmc_unbind(struct udevice *dev); int mmc_initialize(struct bd_info *bis); int mmc_init_device(int num); int mmc_init(struct mmc *mmc); -int mmc_send_tuning(struct mmc *mmc, u32 opcode, int *cmd_error); +int mmc_send_tuning(struct mmc *mmc, u32 opcode); int mmc_send_cmd(struct mmc *mmc, struct mmc_cmd *cmd, struct mmc_data *data); int mmc_deinit(struct mmc *mmc); |
