From: Jonathan Cameron <Jonathan.Cameron@Huawei.com>
To: Paul Cercueil <paul@crapouillou.net>
Cc: Wolfram Sang <wsa@kernel.org>, <linux-i2c@vger.kernel.org>,
<linux-kernel@vger.kernel.org>, Elie Morisse <syniurge@gmail.com>,
"Shyam Sundar S K" <shyam-sundar.s-k@amd.com>
Subject: Re: [PATCH 01/23] i2c: amd-mp2: Remove #ifdef guards for PM related functions
Date: Thu, 6 Jul 2023 10:09:13 +0800 [thread overview]
Message-ID: <20230706100913.00007c4a@Huawei.com> (raw)
In-Reply-To: <20230705204314.89800-2-paul@crapouillou.net>
On Wed, 5 Jul 2023 22:42:52 +0200
Paul Cercueil <paul@crapouillou.net> wrote:
> Use the new PM macros for the suspend and resume functions to be
> automatically dropped by the compiler when CONFIG_PM or
> CONFIG_PM_SLEEP are disabled, without having to use #ifdef guards.
>
> This has the advantage of always compiling these functions in,
> independently of any Kconfig option. Thanks to that, bugs and other
> regressions are subsequently easier to catch.
>
> Note that the use of the UNIVERSAL_DEV_PM_OPS() macro was likely to be
> wrong, as it sets the same callbacks for the runtime-PM and system
> suspend/resume. This patch does not change this behaviour, but I suspect
> that it should be changed to use DEFINE_RUNTIME_DEV_PM_OPS() instead, as
> the current documentation for UNIVERSAL_DEV_PM_OPS() suggests.
I'd be tempted to leave this one alone because it'll be much harder
to spot that it's an ex UNIVERSAL_DEV_PM_OPS() that needs some thinking
about after this change.
>
> Signed-off-by: Paul Cercueil <paul@crapouillou.net>
>
> ---
> Cc: Elie Morisse <syniurge@gmail.com>
> Cc: Shyam Sundar S K <shyam-sundar.s-k@amd.com>
> ---
> drivers/i2c/busses/i2c-amd-mp2-pci.c | 14 +++++---------
> drivers/i2c/busses/i2c-amd-mp2-plat.c | 8 ++------
> drivers/i2c/busses/i2c-amd-mp2.h | 2 --
> 3 files changed, 7 insertions(+), 17 deletions(-)
>
> diff --git a/drivers/i2c/busses/i2c-amd-mp2-pci.c b/drivers/i2c/busses/i2c-amd-mp2-pci.c
> index 143165300949..114fe329279a 100644
> --- a/drivers/i2c/busses/i2c-amd-mp2-pci.c
> +++ b/drivers/i2c/busses/i2c-amd-mp2-pci.c
> @@ -382,7 +382,6 @@ static void amd_mp2_pci_remove(struct pci_dev *pci_dev)
> amd_mp2_clear_reg(privdata);
> }
>
> -#ifdef CONFIG_PM
> static int amd_mp2_pci_suspend(struct device *dev)
> {
> struct pci_dev *pci_dev = to_pci_dev(dev);
> @@ -434,9 +433,10 @@ static int amd_mp2_pci_resume(struct device *dev)
> return ret;
> }
>
> -static UNIVERSAL_DEV_PM_OPS(amd_mp2_pci_pm_ops, amd_mp2_pci_suspend,
> - amd_mp2_pci_resume, NULL);
> -#endif /* CONFIG_PM */
> +static const struct dev_pm_ops amd_mp2_pci_pm_ops = {
> + SYSTEM_SLEEP_PM_OPS(amd_mp2_pci_suspend, amd_mp2_pci_resume)
> + RUNTIME_PM_OPS(amd_mp2_pci_suspend, amd_mp2_pci_resume, NULL)
> +};
>
> static const struct pci_device_id amd_mp2_pci_tbl[] = {
> {PCI_VDEVICE(AMD, PCI_DEVICE_ID_AMD_MP2)},
> @@ -449,11 +449,7 @@ static struct pci_driver amd_mp2_pci_driver = {
> .id_table = amd_mp2_pci_tbl,
> .probe = amd_mp2_pci_probe,
> .remove = amd_mp2_pci_remove,
> -#ifdef CONFIG_PM
> - .driver = {
> - .pm = &amd_mp2_pci_pm_ops,
> - },
> -#endif
> + .driver.pm = pm_ptr(&amd_mp2_pci_pm_ops),
> };
> module_pci_driver(amd_mp2_pci_driver);
>
> diff --git a/drivers/i2c/busses/i2c-amd-mp2-plat.c b/drivers/i2c/busses/i2c-amd-mp2-plat.c
> index 112fe2bc5662..4c677aeaca29 100644
> --- a/drivers/i2c/busses/i2c-amd-mp2-plat.c
> +++ b/drivers/i2c/busses/i2c-amd-mp2-plat.c
> @@ -183,7 +183,6 @@ static const struct i2c_algorithm i2c_amd_algorithm = {
> .functionality = i2c_amd_func,
> };
>
> -#ifdef CONFIG_PM
> static int i2c_amd_suspend(struct amd_i2c_common *i2c_common)
> {
> struct amd_i2c_dev *i2c_dev = amd_i2c_dev_common(i2c_common);
> @@ -198,7 +197,6 @@ static int i2c_amd_resume(struct amd_i2c_common *i2c_common)
>
> return i2c_amd_enable_set(i2c_dev, true);
> }
> -#endif
>
> static const u32 supported_speeds[] = {
> I2C_MAX_HIGH_SPEED_MODE_FREQ,
> @@ -276,10 +274,8 @@ static int i2c_amd_probe(struct platform_device *pdev)
> platform_set_drvdata(pdev, i2c_dev);
>
> i2c_dev->common.cmd_completion = &i2c_amd_cmd_completion;
> -#ifdef CONFIG_PM
> - i2c_dev->common.suspend = &i2c_amd_suspend;
> - i2c_dev->common.resume = &i2c_amd_resume;
> -#endif
> + i2c_dev->common.suspend = pm_ptr(&i2c_amd_suspend);
> + i2c_dev->common.resume = pm_ptr(&i2c_amd_resume);
>
> /* Register the adapter */
> amd_mp2_pm_runtime_get(mp2_dev);
> diff --git a/drivers/i2c/busses/i2c-amd-mp2.h b/drivers/i2c/busses/i2c-amd-mp2.h
> index 018a42de8b1e..40f3cdcc60aa 100644
> --- a/drivers/i2c/busses/i2c-amd-mp2.h
> +++ b/drivers/i2c/busses/i2c-amd-mp2.h
> @@ -160,10 +160,8 @@ struct amd_i2c_common {
> enum speed_enum i2c_speed;
> u8 *dma_buf;
> dma_addr_t dma_addr;
> -#ifdef CONFIG_PM
> int (*suspend)(struct amd_i2c_common *i2c_common);
> int (*resume)(struct amd_i2c_common *i2c_common);
> -#endif /* CONFIG_PM */
> };
>
> /**
next prev parent reply other threads:[~2023-07-06 2:09 UTC|newest]
Thread overview: 79+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-07-05 20:42 [PATCH 00/23] i2c: Use new PM macros Paul Cercueil
2023-07-05 20:42 ` Paul Cercueil
2023-07-05 20:42 ` [PATCH 01/23] i2c: amd-mp2: Remove #ifdef guards for PM related functions Paul Cercueil
2023-07-06 2:09 ` Jonathan Cameron [this message]
2023-07-08 8:42 ` Paul Cercueil
2023-07-05 20:42 ` [PATCH 02/23] i2c: au1550: " Paul Cercueil
2023-07-06 2:10 ` Jonathan Cameron
2023-07-05 20:42 ` [PATCH 03/23] i2c: iproc: " Paul Cercueil
2023-07-05 20:42 ` Paul Cercueil
2023-07-06 2:11 ` Jonathan Cameron
2023-07-06 2:11 ` Jonathan Cameron
2023-07-06 17:01 ` Ray Jui
2023-07-06 17:01 ` Ray Jui
2023-07-05 20:42 ` [PATCH 04/23] i2c: brcmstb: " Paul Cercueil
2023-07-05 20:42 ` Paul Cercueil
2023-07-06 2:12 ` Jonathan Cameron
2023-07-06 2:12 ` Jonathan Cameron
2023-07-05 20:42 ` [PATCH 05/23] i2c: davinci: " Paul Cercueil
2023-07-05 20:42 ` Paul Cercueil
2023-07-06 2:15 ` Jonathan Cameron
2023-07-06 2:15 ` Jonathan Cameron
2023-07-05 20:42 ` [PATCH 06/23] i2c: designware: " Paul Cercueil
2023-07-06 2:18 ` Jonathan Cameron
2023-07-06 9:11 ` Andy Shevchenko
2023-07-05 20:42 ` [PATCH 07/23] i2c: exynos5: " Paul Cercueil
2023-07-05 20:42 ` Paul Cercueil
2023-07-06 2:25 ` Jonathan Cameron
2023-07-06 2:25 ` Jonathan Cameron
2023-07-05 20:42 ` [PATCH 08/23] i2c: hix5hd2: " Paul Cercueil
2023-07-06 2:27 ` Jonathan Cameron
2023-07-05 20:43 ` [PATCH 09/23] i2c: i801: " Paul Cercueil
2023-07-06 2:28 ` Jonathan Cameron
2023-07-05 20:43 ` [PATCH 10/23] i2c: img-scb: " Paul Cercueil
2023-07-06 2:31 ` Jonathan Cameron
2023-07-08 8:46 ` Paul Cercueil
2023-07-05 20:43 ` [PATCH 11/23] i2c: kempld: " Paul Cercueil
2023-07-06 2:37 ` Jonathan Cameron
2023-07-08 9:13 ` Paul Cercueil
2023-07-05 20:43 ` [PATCH 12/23] i2c: lpc2k: " Paul Cercueil
2023-07-05 20:43 ` Paul Cercueil
2023-07-06 2:39 ` Jonathan Cameron
2023-07-06 2:39 ` Jonathan Cameron
2023-07-05 20:43 ` [PATCH 13/23] i2c: mt65xx: " Paul Cercueil
2023-07-05 20:43 ` Paul Cercueil
2023-07-06 2:40 ` Jonathan Cameron
2023-07-06 2:40 ` Jonathan Cameron
2023-07-05 20:43 ` [PATCH 14/23] i2c: nomadik: " Paul Cercueil
2023-07-05 20:43 ` Paul Cercueil
2023-07-06 2:41 ` Jonathan Cameron
2023-07-06 2:41 ` Jonathan Cameron
2023-07-06 17:12 ` Linus Walleij
2023-07-06 17:12 ` Linus Walleij
2023-07-05 20:43 ` [PATCH 15/23] i2c: ocores: " Paul Cercueil
2023-07-06 2:42 ` Jonathan Cameron
2023-07-05 20:43 ` [PATCH 16/23] i2c: pnx: " Paul Cercueil
2023-07-05 20:43 ` Paul Cercueil
2023-07-06 2:49 ` Jonathan Cameron
2023-07-06 2:49 ` Jonathan Cameron
2023-07-05 20:43 ` [PATCH 17/23] i2c: pxa: " Paul Cercueil
2023-07-06 2:50 ` Jonathan Cameron
2023-07-05 20:43 ` [PATCH 18/23] i2c: qup: " Paul Cercueil
2023-07-06 2:51 ` Jonathan Cameron
2023-07-05 20:45 ` [PATCH 19/23] i2c: rcar: " Paul Cercueil
2023-07-05 20:45 ` [PATCH 20/23] i2c: s3c2410: " Paul Cercueil
2023-07-05 20:45 ` Paul Cercueil
2023-07-06 3:06 ` Jonathan Cameron
2023-07-06 3:06 ` Jonathan Cameron
2023-07-05 20:45 ` [PATCH 21/23] i2c: sh-mobile: " Paul Cercueil
2023-07-06 3:07 ` Jonathan Cameron
2023-07-10 12:40 ` Geert Uytterhoeven
2023-07-05 20:45 ` [PATCH 22/23] i2c: virtio: " Paul Cercueil
2023-07-06 3:07 ` Jonathan Cameron
2023-07-06 4:27 ` Viresh Kumar
2023-07-06 4:27 ` Viresh Kumar
2023-07-05 20:45 ` [PATCH 23/23] i2c: mux: pca954x: " Paul Cercueil
2023-07-06 3:07 ` Jonathan Cameron
2023-07-06 6:31 ` Peter Rosin
2023-07-06 2:52 ` [PATCH 19/23] i2c: rcar: " Jonathan Cameron
2023-07-10 12:41 ` Geert Uytterhoeven
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=20230706100913.00007c4a@Huawei.com \
--to=jonathan.cameron@huawei.com \
--cc=linux-i2c@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=paul@crapouillou.net \
--cc=shyam-sundar.s-k@amd.com \
--cc=syniurge@gmail.com \
--cc=wsa@kernel.org \
/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.