From: Adrian Hunter <adrian.hunter@intel.com>
To: Yi Yang <yiyang13@huawei.com>, ulf.hansson@linaro.org
Cc: linux-mmc@vger.kernel.org
Subject: Re: [PATCH -next] mmc: sdhci-of-dwcmshc: Use helper function devm_clk_get_enabled()
Date: Mon, 21 Aug 2023 08:34:54 +0300 [thread overview]
Message-ID: <36fe9b5f-2601-417a-c865-ca39ca99d620@intel.com> (raw)
In-Reply-To: <20230819061659.74716-1-yiyang13@huawei.com>
On 19/08/23 09:16, Yi Yang wrote:
> Since commit 7ef9651e9792 ("clk: Provide new devm_clk helpers for
> prepared and enabled clocks"), devm_clk_get() and clk_prepare_enable()
> can now be replaced by devm_clk_get_enabled() when the driver enables
> (and possibly prepares) the clocks for the whole lifetime of the device.
> Moreover, it is no longer necessary to unprepare and disable the clocks
> explicitly.
>
> Signed-off-by: Yi Yang <yiyang13@huawei.com>
> ---
> drivers/mmc/host/sdhci-of-dwcmshc.c | 18 ++++++++----------
> 1 file changed, 8 insertions(+), 10 deletions(-)
>
> diff --git a/drivers/mmc/host/sdhci-of-dwcmshc.c b/drivers/mmc/host/sdhci-of-dwcmshc.c
> index 31c1892f4ecd..144ca5bc427c 100644
> --- a/drivers/mmc/host/sdhci-of-dwcmshc.c
> +++ b/drivers/mmc/host/sdhci-of-dwcmshc.c
> @@ -495,19 +495,19 @@ static int dwcmshc_probe(struct platform_device *pdev)
> priv = sdhci_pltfm_priv(pltfm_host);
>
> if (dev->of_node) {
> - pltfm_host->clk = devm_clk_get(dev, "core");
> + pltfm_host->clk = devm_clk_get_enabled(dev, "core");
> if (IS_ERR(pltfm_host->clk)) {
> err = PTR_ERR(pltfm_host->clk);
> - dev_err(dev, "failed to get core clk: %d\n", err);
> + dev_err(dev, "failed to get or enable core clk: %d\n", err);
> goto free_pltfm;
> }
> - err = clk_prepare_enable(pltfm_host->clk);
> - if (err)
> - goto free_pltfm;
>
> - priv->bus_clk = devm_clk_get(dev, "bus");
> - if (!IS_ERR(priv->bus_clk))
> - clk_prepare_enable(priv->bus_clk);
> + priv->bus_clk = devm_clk_get_enabled(dev, "bus");
> + if (!IS_ERR(priv->bus_clk)) {
> + err = PTR_ERR(priv->bus_clk);
> + dev_err(dev, "failed to get or enable bus clk: %d\n", err);
> + goto free_pltfm;
> + }
> }
>
> err = mmc_of_parse(host->mmc);
> @@ -564,8 +564,6 @@ static int dwcmshc_probe(struct platform_device *pdev)
> err_setup_host:
> sdhci_cleanup_host(host);
> err_clk:
> - clk_disable_unprepare(pltfm_host->clk);
> - clk_disable_unprepare(priv->bus_clk);
Also need to take them away from dwcmshc_remove()
> if (rk_priv)
> clk_bulk_disable_unprepare(RK35xx_MAX_CLKS,
> rk_priv->rockchip_clks);
prev parent reply other threads:[~2023-08-21 5:35 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-08-19 6:16 [PATCH -next] mmc: sdhci-of-dwcmshc: Use helper function devm_clk_get_enabled() Yi Yang
2023-08-21 5:34 ` Adrian Hunter [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=36fe9b5f-2601-417a-c865-ca39ca99d620@intel.com \
--to=adrian.hunter@intel.com \
--cc=linux-mmc@vger.kernel.org \
--cc=ulf.hansson@linaro.org \
--cc=yiyang13@huawei.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox