mmc: mediatek: remove useless data parameter from msdc_data_xfer_next()
authorYue Hu <huyue2@yulong.com>
Mon, 17 May 2021 10:54:32 +0000 (18:54 +0800)
committerUlf Hansson <ulf.hansson@linaro.org>
Mon, 14 Jun 2021 11:57:40 +0000 (13:57 +0200)
We do not use the 'data' in msdc_data_xfer_next().

Signed-off-by: Yue Hu <huyue2@yulong.com>
Link: https://lore.kernel.org/r/20210517105432.1682-1-zbestahu@gmail.com
Signed-off-by: Ulf Hansson <ulf.hansson@linaro.org>
drivers/mmc/host/mtk-sd.c

index c4db944..4dfc246 100644 (file)
@@ -1347,8 +1347,7 @@ static void msdc_post_req(struct mmc_host *mmc, struct mmc_request *mrq,
        }
 }
 
-static void msdc_data_xfer_next(struct msdc_host *host,
-                               struct mmc_request *mrq, struct mmc_data *data)
+static void msdc_data_xfer_next(struct msdc_host *host, struct mmc_request *mrq)
 {
        if (mmc_op_multi(mrq->cmd->opcode) && mrq->stop && !mrq->stop->error &&
            !mrq->sbc)
@@ -1407,7 +1406,7 @@ static bool msdc_data_xfer_done(struct msdc_host *host, u32 events,
                                (int)data->error, data->bytes_xfered);
                }
 
-               msdc_data_xfer_next(host, mrq, data);
+               msdc_data_xfer_next(host, mrq);
                done = true;
        }
        return done;