diff options
author | Jaehoon Chung <jh80.chung@samsung.com> | 2024-04-15 16:56:50 +0900 |
---|---|---|
committer | Jaehoon Chung <jh80.chung@samsung.com> | 2024-04-15 17:58:59 +0900 |
commit | 3657ef738ad6aa2c32c569e7ae67a5557343f7d0 (patch) | |
tree | 832686514894a02099727af1d56e32c86b9bc978 | |
parent | 2ea7b7a42a59ffa88817cc297655fcacb1e407cc (diff) |
mmc: cv1800b_sdhci: Remove the unused argument
Remove the unused argument about cmd_error.
Fixes: a3b2786651c7 ("mmc: Drop unused mmc_send_tuning() cmd_error parameter")
Signed-off-by: Jaehoon Chung <jh80.chung@samsung.com>
-rw-r--r-- | drivers/mmc/cv1800b_sdhci.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/mmc/cv1800b_sdhci.c b/drivers/mmc/cv1800b_sdhci.c index 2275c537772..9af6b971984 100644 --- a/drivers/mmc/cv1800b_sdhci.c +++ b/drivers/mmc/cv1800b_sdhci.c @@ -42,7 +42,7 @@ static int cv1800b_execute_tuning(struct mmc *mmc, u8 opcode) for (tap = 0; tap < TUNE_MAX_PHCODE; tap++) { cv1800b_set_tap_delay(host, tap); - if (mmc_send_tuning(host->mmc, opcode, NULL)) { + if (mmc_send_tuning(host->mmc, opcode)) { current_size = 0; } else { current_size++; |