mmc: tifm_sd: Use new tasklet API

This converts the driver to use the new tasklet API introduced in
commit 12cc923f1c ("tasklet: Introduce new initialization API")

Signed-off-by: Emil Renner Berthing <kernel@esmil.dk>
Link: https://lore.kernel.org/r/20210204151847.91353-7-kernel@esmil.dk
Signed-off-by: Ulf Hansson <ulf.hansson@linaro.org>
This commit is contained in:
Emil Renner Berthing 2021-02-04 16:18:44 +01:00 committed by Ulf Hansson
parent ddf116f96f
commit c36dd04282

View File

@ -731,9 +731,9 @@ err_out:
mmc_request_done(mmc, mrq); mmc_request_done(mmc, mrq);
} }
static void tifm_sd_end_cmd(unsigned long data) static void tifm_sd_end_cmd(struct tasklet_struct *t)
{ {
struct tifm_sd *host = (struct tifm_sd*)data; struct tifm_sd *host = from_tasklet(host, t, finish_tasklet);
struct tifm_dev *sock = host->dev; struct tifm_dev *sock = host->dev;
struct mmc_host *mmc = tifm_get_drvdata(sock); struct mmc_host *mmc = tifm_get_drvdata(sock);
struct mmc_request *mrq; struct mmc_request *mrq;
@ -968,8 +968,7 @@ static int tifm_sd_probe(struct tifm_dev *sock)
*/ */
mmc->max_busy_timeout = TIFM_MMCSD_REQ_TIMEOUT_MS; mmc->max_busy_timeout = TIFM_MMCSD_REQ_TIMEOUT_MS;
tasklet_init(&host->finish_tasklet, tifm_sd_end_cmd, tasklet_setup(&host->finish_tasklet, tifm_sd_end_cmd);
(unsigned long)host);
timer_setup(&host->timer, tifm_sd_abort, 0); timer_setup(&host->timer, tifm_sd_abort, 0);
mmc->ops = &tifm_sd_ops; mmc->ops = &tifm_sd_ops;