From: Paul Cercueil <paul@crapouillou.net>
To: Lukas Bulwahn <lukas.bulwahn@gmail.com>
Cc: Daniel Lezcano <daniel.lezcano@linaro.org>,
Thomas Gleixner <tglx@linutronix.de>,
Maarten ter Huurne <maarten@treewalker.org>,
kernel-janitors@vger.kernel.org, linux-kernel@vger.kernel.org
Subject: Re: [PATCH] clocksource: ingenic-ost: define pm functions properly in platform_driver struct
Date: Tue, 22 Nov 2022 14:24:00 +0000 [thread overview]
Message-ID: <0O6RLR.G9QGB8EGFCT01@crapouillou.net> (raw)
In-Reply-To: <20221122141434.30498-1-lukas.bulwahn@gmail.com>
Hi Lukas,
Le mar. 22 nov. 2022 à 15:14:34 +0100, Lukas Bulwahn
<lukas.bulwahn@gmail.com> a écrit :
> Commit ca7b72b5a5f2 ("clocksource: Add driver for the Ingenic JZ47xx
> OST")
> adds the struct platform_driver ingenic_ost_driver, with the
> definition of
> pm functions under the non-existing config PM_SUSPEND, which means the
> intended pm functions were never actually included in any build.
>
> Since commit 7a82e97a11b9 ("PM: core: introduce pm_ptr() macro"), the
> default pattern for platform_driver definitions is to use pm_ptr().
> Assuming CONFIG_PM_SUSPEND really intended to mean CONFIG_PM (and not
> CONFIG_PM_SLEEP), use pm_ptr() just as most other drivers do.
It actually was supposed to be CONFIG_PM_SLEEP, yes. You can see that
because the only callbacks are .suspend_noirq and .resume_noirq.
Therefore you can use pm_sleep_ptr() instead of pm_ptr().
By the way, once you use this macro then the __maybe_unused tags on the
dev_pm_ops structure and its callbacks are not needed anymore, so you
can remove these as well.
> Fixes: ca7b72b5a5f2 ("clocksource: Add driver for the Ingenic JZ47xx
> OST")
That Fixes: tag won't work since the pm_ptr() macro did not exist back
then (besides, you didn't Cc linux-stable).
I'd advocate to remove the Fixes: tag, since it is not really a bug
fix, more like an improvement.
Cheers,
-Paul
> Signed-off-by: Lukas Bulwahn <lukas.bulwahn@gmail.com>
> ---
> drivers/clocksource/ingenic-ost.c | 4 +---
> 1 file changed, 1 insertion(+), 3 deletions(-)
>
> diff --git a/drivers/clocksource/ingenic-ost.c
> b/drivers/clocksource/ingenic-ost.c
> index 06d25754e606..6b64731df15c 100644
> --- a/drivers/clocksource/ingenic-ost.c
> +++ b/drivers/clocksource/ingenic-ost.c
> @@ -181,9 +181,7 @@ static const struct of_device_id
> ingenic_ost_of_match[] = {
> static struct platform_driver ingenic_ost_driver = {
> .driver = {
> .name = "ingenic-ost",
> -#ifdef CONFIG_PM_SUSPEND
> - .pm = &ingenic_ost_pm_ops,
> -#endif
> + .pm = pm_ptr(&ingenic_ost_pm_ops),
> .of_match_table = ingenic_ost_of_match,
> },
> };
> --
> 2.17.1
>
next prev parent reply other threads:[~2022-11-22 14:24 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-11-22 14:14 Lukas Bulwahn
2022-11-22 14:24 ` Paul Cercueil [this message]
2022-11-22 15:13 ` Lukas Bulwahn
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=0O6RLR.G9QGB8EGFCT01@crapouillou.net \
--to=paul@crapouillou.net \
--cc=daniel.lezcano@linaro.org \
--cc=kernel-janitors@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=lukas.bulwahn@gmail.com \
--cc=maarten@treewalker.org \
--cc=tglx@linutronix.de \
/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®