From: Jonathan Cameron <Jonathan.Cameron@Huawei.com>
To: "Uwe Kleine-König" <u.kleine-koenig@pengutronix.de>
Cc: Thierry Reding <thierry.reding@gmail.com>,
Shawn Guo <shawnguo@kernel.org>,
Sascha Hauer <s.hauer@pengutronix.de>,
Fabio Estevam <festevam@gmail.com>,
NXP Linux Team <linux-imx@nxp.com>, <linux-pwm@vger.kernel.org>,
<linux-arm-kernel@lists.infradead.org>, <kernel@pengutronix.de>,
Florian Fainelli <florian.fainelli@broadcom.com>
Subject: Re: [PATCH 06/11] pwm: imx-tpm: Use DEFINE_SIMPLE_DEV_PM_OPS for PM functions
Date: Wed, 11 Oct 2023 12:22:19 +0100 [thread overview]
Message-ID: <20231011122219.00002972@Huawei.com> (raw)
In-Reply-To: <20231010075112.755178-7-u.kleine-koenig@pengutronix.de>
On Tue, 10 Oct 2023 09:51:07 +0200
Uwe Kleine-König <u.kleine-koenig@pengutronix.de> wrote:
> This macro has the advantage over SIMPLE_DEV_PM_OPS that we don't have to
> care about when the functions are actually used, so the corresponding
> __maybe_unused can be dropped.
>
> Also make use of pm_ptr() to discard all PM related stuff if CONFIG_PM
> isn't enabled.
>
> Signed-off-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
Reviewed-by: Jonathan Cameron <Jonathan.Cameron@huawei.com>
> ---
> drivers/pwm/pwm-imx-tpm.c | 10 +++++-----
> 1 file changed, 5 insertions(+), 5 deletions(-)
>
> diff --git a/drivers/pwm/pwm-imx-tpm.c b/drivers/pwm/pwm-imx-tpm.c
> index 98ab65c89685..da22f9bb367e 100644
> --- a/drivers/pwm/pwm-imx-tpm.c
> +++ b/drivers/pwm/pwm-imx-tpm.c
> @@ -390,7 +390,7 @@ static void pwm_imx_tpm_remove(struct platform_device *pdev)
> clk_disable_unprepare(tpm->clk);
> }
>
> -static int __maybe_unused pwm_imx_tpm_suspend(struct device *dev)
> +static int pwm_imx_tpm_suspend(struct device *dev)
> {
> struct imx_tpm_pwm_chip *tpm = dev_get_drvdata(dev);
>
> @@ -409,7 +409,7 @@ static int __maybe_unused pwm_imx_tpm_suspend(struct device *dev)
> return 0;
> }
>
> -static int __maybe_unused pwm_imx_tpm_resume(struct device *dev)
> +static int pwm_imx_tpm_resume(struct device *dev)
> {
> struct imx_tpm_pwm_chip *tpm = dev_get_drvdata(dev);
> int ret = 0;
> @@ -421,8 +421,8 @@ static int __maybe_unused pwm_imx_tpm_resume(struct device *dev)
> return ret;
> }
>
> -static SIMPLE_DEV_PM_OPS(imx_tpm_pwm_pm,
> - pwm_imx_tpm_suspend, pwm_imx_tpm_resume);
> +static DEFINE_SIMPLE_DEV_PM_OPS(imx_tpm_pwm_pm,
> + pwm_imx_tpm_suspend, pwm_imx_tpm_resume);
>
> static const struct of_device_id imx_tpm_pwm_dt_ids[] = {
> { .compatible = "fsl,imx7ulp-pwm", },
> @@ -434,7 +434,7 @@ static struct platform_driver imx_tpm_pwm_driver = {
> .driver = {
> .name = "imx7ulp-tpm-pwm",
> .of_match_table = imx_tpm_pwm_dt_ids,
> - .pm = &imx_tpm_pwm_pm,
> + .pm = pm_ptr(&imx_tpm_pwm_pm),
> },
> .probe = pwm_imx_tpm_probe,
> .remove_new = pwm_imx_tpm_remove,
WARNING: multiple messages have this Message-ID (diff)
From: Jonathan Cameron <Jonathan.Cameron@Huawei.com>
To: "Uwe Kleine-König" <u.kleine-koenig@pengutronix.de>
Cc: Thierry Reding <thierry.reding@gmail.com>,
Shawn Guo <shawnguo@kernel.org>,
Sascha Hauer <s.hauer@pengutronix.de>,
Fabio Estevam <festevam@gmail.com>,
NXP Linux Team <linux-imx@nxp.com>, <linux-pwm@vger.kernel.org>,
<linux-arm-kernel@lists.infradead.org>, <kernel@pengutronix.de>,
Florian Fainelli <florian.fainelli@broadcom.com>
Subject: Re: [PATCH 06/11] pwm: imx-tpm: Use DEFINE_SIMPLE_DEV_PM_OPS for PM functions
Date: Wed, 11 Oct 2023 12:22:19 +0100 [thread overview]
Message-ID: <20231011122219.00002972@Huawei.com> (raw)
In-Reply-To: <20231010075112.755178-7-u.kleine-koenig@pengutronix.de>
On Tue, 10 Oct 2023 09:51:07 +0200
Uwe Kleine-König <u.kleine-koenig@pengutronix.de> wrote:
> This macro has the advantage over SIMPLE_DEV_PM_OPS that we don't have to
> care about when the functions are actually used, so the corresponding
> __maybe_unused can be dropped.
>
> Also make use of pm_ptr() to discard all PM related stuff if CONFIG_PM
> isn't enabled.
>
> Signed-off-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
Reviewed-by: Jonathan Cameron <Jonathan.Cameron@huawei.com>
> ---
> drivers/pwm/pwm-imx-tpm.c | 10 +++++-----
> 1 file changed, 5 insertions(+), 5 deletions(-)
>
> diff --git a/drivers/pwm/pwm-imx-tpm.c b/drivers/pwm/pwm-imx-tpm.c
> index 98ab65c89685..da22f9bb367e 100644
> --- a/drivers/pwm/pwm-imx-tpm.c
> +++ b/drivers/pwm/pwm-imx-tpm.c
> @@ -390,7 +390,7 @@ static void pwm_imx_tpm_remove(struct platform_device *pdev)
> clk_disable_unprepare(tpm->clk);
> }
>
> -static int __maybe_unused pwm_imx_tpm_suspend(struct device *dev)
> +static int pwm_imx_tpm_suspend(struct device *dev)
> {
> struct imx_tpm_pwm_chip *tpm = dev_get_drvdata(dev);
>
> @@ -409,7 +409,7 @@ static int __maybe_unused pwm_imx_tpm_suspend(struct device *dev)
> return 0;
> }
>
> -static int __maybe_unused pwm_imx_tpm_resume(struct device *dev)
> +static int pwm_imx_tpm_resume(struct device *dev)
> {
> struct imx_tpm_pwm_chip *tpm = dev_get_drvdata(dev);
> int ret = 0;
> @@ -421,8 +421,8 @@ static int __maybe_unused pwm_imx_tpm_resume(struct device *dev)
> return ret;
> }
>
> -static SIMPLE_DEV_PM_OPS(imx_tpm_pwm_pm,
> - pwm_imx_tpm_suspend, pwm_imx_tpm_resume);
> +static DEFINE_SIMPLE_DEV_PM_OPS(imx_tpm_pwm_pm,
> + pwm_imx_tpm_suspend, pwm_imx_tpm_resume);
>
> static const struct of_device_id imx_tpm_pwm_dt_ids[] = {
> { .compatible = "fsl,imx7ulp-pwm", },
> @@ -434,7 +434,7 @@ static struct platform_driver imx_tpm_pwm_driver = {
> .driver = {
> .name = "imx7ulp-tpm-pwm",
> .of_match_table = imx_tpm_pwm_dt_ids,
> - .pm = &imx_tpm_pwm_pm,
> + .pm = pm_ptr(&imx_tpm_pwm_pm),
> },
> .probe = pwm_imx_tpm_probe,
> .remove_new = pwm_imx_tpm_remove,
_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel
next prev parent reply other threads:[~2023-10-11 11:22 UTC|newest]
Thread overview: 44+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-10-10 7:51 [PATCH 00/11] pwm: Use DEFINE_SIMPLE_DEV_PM_OPS for PM functions Uwe Kleine-König
2023-10-10 7:51 ` Uwe Kleine-König
2023-10-10 7:51 ` [PATCH 01/11] pwm: atmel-hlcdc: " Uwe Kleine-König
2023-10-10 7:51 ` Uwe Kleine-König
2023-10-11 11:19 ` Jonathan Cameron
2023-10-11 11:19 ` Jonathan Cameron
2023-10-10 7:51 ` [PATCH 02/11] pwm: atmel-tcb: " Uwe Kleine-König
2023-10-10 7:51 ` Uwe Kleine-König
2023-10-11 11:20 ` Jonathan Cameron
2023-10-11 11:20 ` Jonathan Cameron
2023-10-10 7:51 ` [PATCH 03/11] pwm: berlin: " Uwe Kleine-König
2023-10-10 7:51 ` [PATCH 04/11] pwm: brcmstb: " Uwe Kleine-König
2023-10-10 7:51 ` Uwe Kleine-König
2023-10-11 11:21 ` Jonathan Cameron
2023-10-11 11:21 ` Jonathan Cameron
2023-10-11 15:31 ` Uwe Kleine-König
2023-10-11 15:31 ` Uwe Kleine-König
2023-10-11 15:42 ` Florian Fainelli
2023-10-11 15:42 ` Florian Fainelli
2023-10-11 16:48 ` Uwe Kleine-König
2023-10-11 16:48 ` Uwe Kleine-König
2023-10-13 13:35 ` Thierry Reding
2023-10-13 13:35 ` Thierry Reding
2023-10-11 16:48 ` Florian Fainelli
2023-10-11 16:48 ` Florian Fainelli
2023-10-10 7:51 ` [PATCH 05/11] pwm: dwc: " Uwe Kleine-König
2023-10-10 7:51 ` [PATCH 06/11] pwm: imx-tpm: " Uwe Kleine-König
2023-10-10 7:51 ` Uwe Kleine-König
2023-10-11 11:22 ` Jonathan Cameron [this message]
2023-10-11 11:22 ` Jonathan Cameron
2023-10-10 7:51 ` [PATCH 07/11] pwm: samsung: " Uwe Kleine-König
2023-10-10 7:51 ` Uwe Kleine-König
2023-10-11 11:22 ` Jonathan Cameron
2023-10-11 11:22 ` Jonathan Cameron
2023-10-10 7:51 ` [PATCH 08/11] pwm: stm32-lp: " Uwe Kleine-König
2023-10-10 7:51 ` Uwe Kleine-König
2023-10-11 11:23 ` Jonathan Cameron
2023-10-11 11:23 ` Jonathan Cameron
2023-10-10 7:51 ` [PATCH 09/11] pwm: stm32: " Uwe Kleine-König
2023-10-10 7:51 ` Uwe Kleine-König
2023-10-11 11:23 ` Jonathan Cameron
2023-10-11 11:23 ` Jonathan Cameron
2023-10-10 7:51 ` [PATCH 10/11] pwm: tiecap: " Uwe Kleine-König
2023-10-10 7:51 ` [PATCH 11/11] pwm: tiehrpwm: " Uwe Kleine-König
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=20231011122219.00002972@Huawei.com \
--to=jonathan.cameron@huawei.com \
--cc=festevam@gmail.com \
--cc=florian.fainelli@broadcom.com \
--cc=kernel@pengutronix.de \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-imx@nxp.com \
--cc=linux-pwm@vger.kernel.org \
--cc=s.hauer@pengutronix.de \
--cc=shawnguo@kernel.org \
--cc=thierry.reding@gmail.com \
--cc=u.kleine-koenig@pengutronix.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 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.