From: Matthias Brugger <matthias.bgg@gmail.com>
To: Peng Wu <wupeng58@huawei.com>
Cc: linux-arm-kernel@lists.infradead.org,
linux-mediatek@lists.infradead.org, linux-kernel@vger.kernel.org,
liwei391@huawei.com
Subject: Re: [PATCH v2] soc: mediatek: fix missing clk_disable_unprepare() on err in svs_resume()
Date: Thu, 23 Jun 2022 10:51:07 +0200 [thread overview]
Message-ID: <57cc70a9-1f70-66fb-3ed1-7c67a34f131b@gmail.com> (raw)
In-Reply-To: <20220623070240.63382-1-wupeng58@huawei.com>
On 23/06/2022 09:02, Peng Wu wrote:
> Fix the missing clk_disable_unprepare() before return
> from svs_resume() in the error handling case.
>
> Signed-off-by: Peng Wu <wupeng58@huawei.com>
> Reported-by: Hulk Robot <hulkci@huawei.com>
Applied, thanks!
> ---
> v2:
> - Same holds for the error path of svs_init02().
> ---
> drivers/soc/mediatek/mtk-svs.c | 8 ++++++--
> 1 file changed, 6 insertions(+), 2 deletions(-)
>
> diff --git a/drivers/soc/mediatek/mtk-svs.c b/drivers/soc/mediatek/mtk-svs.c
> index 606a00a2e57d..87e05ab51552 100644
> --- a/drivers/soc/mediatek/mtk-svs.c
> +++ b/drivers/soc/mediatek/mtk-svs.c
> @@ -1526,16 +1526,20 @@ static int svs_resume(struct device *dev)
> ret = reset_control_deassert(svsp->rst);
> if (ret) {
> dev_err(svsp->dev, "cannot deassert reset %d\n", ret);
> - return ret;
> + goto out_of_resume;
> }
>
> ret = svs_init02(svsp);
> if (ret)
> - return ret;
> + goto out_of_resume;
>
> svs_mon_mode(svsp);
>
> return 0;
> +
> +out_of_resume:
> + clk_disable_unprepare(svsp->main_clk);
> + return ret;
> }
>
> static int svs_bank_resource_setup(struct svs_platform *svsp)
prev parent reply other threads:[~2022-06-23 8:51 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-06-23 7:02 [PATCH v2] soc: mediatek: fix missing clk_disable_unprepare() on err in svs_resume() Peng Wu
2022-06-23 8:51 ` Matthias Brugger [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=57cc70a9-1f70-66fb-3ed1-7c67a34f131b@gmail.com \
--to=matthias.bgg@gmail.com \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-mediatek@lists.infradead.org \
--cc=liwei391@huawei.com \
--cc=wupeng58@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