]> asedeno.scripts.mit.edu Git - linux.git/commitdiff
mmc: tmio: replace tmio_mmc_clk_stop() calls with tmio_mmc_set_clock()
authorMasahiro Yamada <yamada.masahiro@socionext.com>
Thu, 23 Aug 2018 04:44:15 +0000 (13:44 +0900)
committerUlf Hansson <ulf.hansson@linaro.org>
Mon, 8 Oct 2018 09:40:43 +0000 (11:40 +0200)
tmio_mmc_clk_stop(host) is equivalent to tmio_mmc_set_clock(host, 0).
This replacement is needed for the next commit.

Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
Reviewed-by: Wolfram Sang <wsa+renesas@sang-engineering.com>
Signed-off-by: Ulf Hansson <ulf.hansson@linaro.org>
drivers/mmc/host/tmio_mmc_core.c

index b750f6372dc23440e58dc610d905fbb69618aeb0..cabeb36cd610cd25f2c235db2aba2beafaa66906 100644 (file)
@@ -1040,7 +1040,7 @@ static void tmio_mmc_set_ios(struct mmc_host *mmc, struct mmc_ios *ios)
        switch (ios->power_mode) {
        case MMC_POWER_OFF:
                tmio_mmc_power_off(host);
-               tmio_mmc_clk_stop(host);
+               tmio_mmc_set_clock(host, 0);
                break;
        case MMC_POWER_UP:
                tmio_mmc_power_on(host, ios->vdd);
@@ -1307,7 +1307,7 @@ int tmio_mmc_host_probe(struct tmio_mmc_host *_host)
        if (pdata->flags & TMIO_MMC_SDIO_IRQ)
                _host->sdio_irq_mask = TMIO_SDIO_MASK_ALL;
 
-       tmio_mmc_clk_stop(_host);
+       tmio_mmc_set_clock(_host, 0);
        tmio_mmc_reset(_host);
 
        _host->sdcard_irq_mask = sd_ctrl_read16_and_16_as_32(_host, CTL_IRQ_MASK);
@@ -1391,7 +1391,7 @@ int tmio_mmc_host_runtime_suspend(struct device *dev)
        tmio_mmc_disable_mmc_irqs(host, TMIO_MASK_ALL);
 
        if (host->clk_cache)
-               tmio_mmc_clk_stop(host);
+               tmio_mmc_set_clock(host, 0);
 
        tmio_mmc_clk_disable(host);