From: Frank Li <Frank.li@oss.nxp.com>
To: phucduc.bui@gmail.com
Cc: Ulf Hansson <ulfh@kernel.org>, Frank Li <Frank.Li@nxp.com>,
Sascha Hauer <s.hauer@pengutronix.de>,
Pengutronix Kernel Team <kernel@pengutronix.de>,
Fabio Estevam <festevam@gmail.com>,
rafael.j.wysocki@intel.com, Jacky Bai <ping.bai@nxp.com>,
Lucas Stach <l.stach@pengutronix.de>, Peng Fan <peng.fan@nxp.com>,
Xu Yang <xu.yang_2@nxp.com>,
Benjamin Gaignard <benjamin.gaignard@collabora.com>,
Ming Qian <ming.qian@oss.nxp.com>,
u.kleine-koenig@baylibre.com,
Marco Felsch <m.felsch@pengutronix.de>,
Alexander Stein <alexander.stein@ew.tq-group.com>,
Guoniu Zhou <guoniu.zhou@oss.nxp.com>,
linux-pm@vger.kernel.org, imx@lists.linux.dev,
linux-arm-kernel@lists.infradead.org,
linux-kernel@vger.kernel.org
Subject: Re: [PATCH 2/3] pmdomain: imx8m-blk-ctrl: Use pm_runtime_resume_and_get()
Date: Mon, 21 Sep 2026 11:18:14 -0500 [thread overview]
Message-ID: <arFYxkfN_WDpDtRb@SMW015318> (raw)
In-Reply-To: <20260921033708.14433-3-phucduc.bui@gmail.com>
On Mon, Sep 21, 2026 at 10:37:07AM +0700, phucduc.bui@gmail.com wrote:
> From: bui duc phuc <phucduc.bui@gmail.com>
>
> Replace the open-coded pm_runtime_get_sync() + pm_runtime_put_noidle()
> error handling pattern with pm_runtime_resume_and_get(), which already
> does this internally.
>
> No functional change.
>
> Found by manual code inspection.
>
> Signed-off-by: bui duc phuc <phucduc.bui@gmail.com>
> ---
Reviewed-by: Frank Li <Frank.Li@nxp.com>
> drivers/pmdomain/imx/imx8m-blk-ctrl.c | 15 +++++----------
> 1 file changed, 5 insertions(+), 10 deletions(-)
>
> diff --git a/drivers/pmdomain/imx/imx8m-blk-ctrl.c b/drivers/pmdomain/imx/imx8m-blk-ctrl.c
> index 479789009c7f..fe083b1e7251 100644
> --- a/drivers/pmdomain/imx/imx8m-blk-ctrl.c
> +++ b/drivers/pmdomain/imx/imx8m-blk-ctrl.c
> @@ -99,9 +99,8 @@ static int imx8m_blk_ctrl_power_on(struct generic_pm_domain *genpd)
> int ret;
>
> /* make sure bus domain is awake */
> - ret = pm_runtime_get_sync(bc->bus_power_dev);
> + ret = pm_runtime_resume_and_get(bc->bus_power_dev);
> if (ret < 0) {
> - pm_runtime_put_noidle(bc->bus_power_dev);
> dev_err(bc->dev, "failed to power up bus domain\n");
> return ret;
> }
> @@ -382,20 +381,16 @@ static int imx8m_blk_ctrl_suspend(struct device *dev)
> * in the system suspend/resume paths due to the device parent/child
> * hierarchy.
> */
> - ret = pm_runtime_get_sync(bc->bus_power_dev);
> - if (ret < 0) {
> - pm_runtime_put_noidle(bc->bus_power_dev);
> + ret = pm_runtime_resume_and_get(bc->bus_power_dev);
> + if (ret < 0)
> return ret;
> - }
>
> for (i = 0; i < bc->onecell_data.num_domains; i++) {
> struct imx8m_blk_ctrl_domain *domain = &bc->domains[i];
>
> - ret = pm_runtime_get_sync(domain->power_dev);
> - if (ret < 0) {
> - pm_runtime_put_noidle(domain->power_dev);
> + ret = pm_runtime_resume_and_get(domain->power_dev);
> + if (ret < 0)
> goto out_fail;
> - }
> }
>
> return 0;
> --
> 2.43.0
>
>
next prev parent reply other threads:[~2026-09-21 16:18 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-09-21 3:37 [PATCH 0/3] pmdomain: imx: " phucduc.bui
2026-09-21 3:37 ` [PATCH 1/3] pmdomain: imx: gpcv2: " phucduc.bui
2026-09-21 16:16 ` Frank Li
2026-09-21 3:37 ` [PATCH 2/3] pmdomain: imx8m-blk-ctrl: " phucduc.bui
2026-09-21 16:18 ` Frank Li [this message]
2026-09-21 3:37 ` [PATCH 3/3] pmdomain: imx93-blk-ctrl: " phucduc.bui
2026-09-21 16:18 ` Frank Li
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=arFYxkfN_WDpDtRb@SMW015318 \
--to=frank.li@oss.nxp.com \
--cc=Frank.Li@nxp.com \
--cc=alexander.stein@ew.tq-group.com \
--cc=benjamin.gaignard@collabora.com \
--cc=festevam@gmail.com \
--cc=guoniu.zhou@oss.nxp.com \
--cc=imx@lists.linux.dev \
--cc=kernel@pengutronix.de \
--cc=l.stach@pengutronix.de \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-pm@vger.kernel.org \
--cc=m.felsch@pengutronix.de \
--cc=ming.qian@oss.nxp.com \
--cc=peng.fan@nxp.com \
--cc=phucduc.bui@gmail.com \
--cc=ping.bai@nxp.com \
--cc=rafael.j.wysocki@intel.com \
--cc=s.hauer@pengutronix.de \
--cc=u.kleine-koenig@baylibre.com \
--cc=ulfh@kernel.org \
--cc=xu.yang_2@nxp.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
all inboxes | Powered by JetHome®