From: Peter Chen <peter.chen@kernel.org>
To: Fabio Estevam <festevam@gmail.com>
Cc: gregkh@linuxfoundation.org, thierry.reding@gmail.com,
linux-usb@vger.kernel.org, Fabio Estevam <festevam@denx.de>
Subject: Re: [PATCH 2/2] usb: chipidea: ci_hdrc_tegra: Switch to RUNTIME_PM_OPS()
Date: Wed, 10 Jul 2024 09:51:58 +0800 [thread overview]
Message-ID: <20240710015158.GC2914204@nchen-desktop> (raw)
In-Reply-To: <20240625231023.436403-2-festevam@gmail.com>
On 24-06-25 20:10:23, Fabio Estevam wrote:
> From: Fabio Estevam <festevam@denx.de>
>
> Replace SET_RUNTIME_PM_OPS() with its modern RUNTIME_PM_OPS()
> alternative.
>
> The combined usage of pm_ptr() and RUNTIME_PM_OPS allows the compiler
> to evaluate if the runtime suspend/resume() functions are used at build
> time or are simply dead code.
>
> This allows removing the __maybe_unused notation from the runtime
> suspend/resume() functions.
>
> Signed-off-by: Fabio Estevam <festevam@denx.de>
Acked-by: Peter Chen <peter.chen@kernel.org>
> ---
> drivers/usb/chipidea/ci_hdrc_tegra.c | 9 ++++-----
> 1 file changed, 4 insertions(+), 5 deletions(-)
>
> diff --git a/drivers/usb/chipidea/ci_hdrc_tegra.c b/drivers/usb/chipidea/ci_hdrc_tegra.c
> index 2cc305803217..9538d425f0a0 100644
> --- a/drivers/usb/chipidea/ci_hdrc_tegra.c
> +++ b/drivers/usb/chipidea/ci_hdrc_tegra.c
> @@ -372,7 +372,7 @@ static void tegra_usb_remove(struct platform_device *pdev)
> pm_runtime_force_suspend(&pdev->dev);
> }
>
> -static int __maybe_unused tegra_usb_runtime_resume(struct device *dev)
> +static int tegra_usb_runtime_resume(struct device *dev)
> {
> struct tegra_usb *usb = dev_get_drvdata(dev);
> int err;
> @@ -386,7 +386,7 @@ static int __maybe_unused tegra_usb_runtime_resume(struct device *dev)
> return 0;
> }
>
> -static int __maybe_unused tegra_usb_runtime_suspend(struct device *dev)
> +static int tegra_usb_runtime_suspend(struct device *dev)
> {
> struct tegra_usb *usb = dev_get_drvdata(dev);
>
> @@ -396,15 +396,14 @@ static int __maybe_unused tegra_usb_runtime_suspend(struct device *dev)
> }
>
> static const struct dev_pm_ops tegra_usb_pm = {
> - SET_RUNTIME_PM_OPS(tegra_usb_runtime_suspend, tegra_usb_runtime_resume,
> - NULL)
> + RUNTIME_PM_OPS(tegra_usb_runtime_suspend, tegra_usb_runtime_resume, NULL)
> };
>
> static struct platform_driver tegra_usb_driver = {
> .driver = {
> .name = "tegra-usb",
> .of_match_table = tegra_usb_of_match,
> - .pm = &tegra_usb_pm,
> + .pm = pm_ptr(&tegra_usb_pm),
> },
> .probe = tegra_usb_probe,
> .remove_new = tegra_usb_remove,
> --
> 2.34.1
>
next prev parent reply other threads:[~2024-07-10 1:52 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-06-25 23:10 [PATCH 1/2] usb: chipidea: ci_hdrc_imx: Switch to RUNTIME/SYSTEM_SLEEP_PM_OPS() Fabio Estevam
2024-06-25 23:10 ` [PATCH 2/2] usb: chipidea: ci_hdrc_tegra: Switch to RUNTIME_PM_OPS() Fabio Estevam
2024-07-10 1:51 ` Peter Chen [this message]
2024-07-10 1:51 ` [PATCH 1/2] usb: chipidea: ci_hdrc_imx: Switch to RUNTIME/SYSTEM_SLEEP_PM_OPS() Peter Chen
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=20240710015158.GC2914204@nchen-desktop \
--to=peter.chen@kernel.org \
--cc=festevam@denx.de \
--cc=festevam@gmail.com \
--cc=gregkh@linuxfoundation.org \
--cc=linux-usb@vger.kernel.org \
--cc=thierry.reding@gmail.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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.