All of lore.kernel.org
 help / color / mirror / Atom feed
From: Paul Cercueil <paul@crapouillou.net>
To: Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
	Peter Chen <Peter.Chen@nxp.com>,
	Cristian Birsan <cristian.birsan@microchip.com>,
	Felipe Balbi <balbi@kernel.org>,
	Nicolas Ferre <nicolas.ferre@microchip.com>,
	Alexandre Belloni <alexandre.belloni@bootlin.com>,
	Ludovic Desroches <ludovic.desroches@microchip.com>,
	Avi Fishman <avifishman70@gmail.com>,
	Tomer Maimon <tmaimon77@gmail.com>,
	Tali Perry <tali.perry1@gmail.com>,
	Patrick Venture <venture@google.com>,
	Nancy Yuen <yuenn@google.com>,
	Benjamin Fair <benjaminfair@google.com>,
	Alan Stern <stern@rowland.harvard.edu>,
	Tony Prisk <linux@prisktech.co.nz>, Bin Liu <b-liu@ti.com>,
	Shawn Guo <shawnguo@kernel.org>,
	Sascha Hauer <s.hauer@pengutronix.de>,
	Pengutronix Kernel Team <kernel@pengutronix.de>,
	Fabio Estevam <festevam@gmail.com>,
	NXP Linux Team <linux-imx@nxp.com>
Cc: linux-usb@vger.kernel.org, linux-kernel@vger.kernel.org,
	linux-arm-kernel@lists.infradead.org, openbmc@lists.ozlabs.org,
	Paul Cercueil <paul@crapouillou.net>
Subject: [PATCH 04/20] usb/host: ehci-platform: Use pm_ptr() macro
Date: Thu,  3 Sep 2020 13:25:38 +0200	[thread overview]
Message-ID: <20200903112554.34263-5-paul@crapouillou.net> (raw)
In-Reply-To: <20200903112554.34263-1-paul@crapouillou.net>

Use the newly introduced pm_ptr() macro, and mark the suspend/resume
functions __maybe_unused. These functions can then be moved outside the
CONFIG_PM_SUSPEND block, and the compiler can then process them and
detect build failures independently of the config. If unused, they will
simply be discarded by the compiler.

Signed-off-by: Paul Cercueil <paul@crapouillou.net>
---
 drivers/usb/host/ehci-platform.c | 8 +++-----
 1 file changed, 3 insertions(+), 5 deletions(-)

diff --git a/drivers/usb/host/ehci-platform.c b/drivers/usb/host/ehci-platform.c
index 006c4f6188a5..4585a3a24678 100644
--- a/drivers/usb/host/ehci-platform.c
+++ b/drivers/usb/host/ehci-platform.c
@@ -410,8 +410,7 @@ static int ehci_platform_remove(struct platform_device *dev)
 	return 0;
 }
 
-#ifdef CONFIG_PM_SLEEP
-static int ehci_platform_suspend(struct device *dev)
+static int __maybe_unused ehci_platform_suspend(struct device *dev)
 {
 	struct usb_hcd *hcd = dev_get_drvdata(dev);
 	struct usb_ehci_pdata *pdata = dev_get_platdata(dev);
@@ -433,7 +432,7 @@ static int ehci_platform_suspend(struct device *dev)
 	return ret;
 }
 
-static int ehci_platform_resume(struct device *dev)
+static int __maybe_unused ehci_platform_resume(struct device *dev)
 {
 	struct usb_hcd *hcd = dev_get_drvdata(dev);
 	struct usb_ehci_pdata *pdata = dev_get_platdata(dev);
@@ -464,7 +463,6 @@ static int ehci_platform_resume(struct device *dev)
 
 	return 0;
 }
-#endif /* CONFIG_PM_SLEEP */
 
 static const struct of_device_id vt8500_ehci_ids[] = {
 	{ .compatible = "via,vt8500-ehci", },
@@ -499,7 +497,7 @@ static struct platform_driver ehci_platform_driver = {
 	.shutdown	= usb_hcd_platform_shutdown,
 	.driver		= {
 		.name	= "ehci-platform",
-		.pm	= &ehci_platform_pm_ops,
+		.pm	= pm_ptr(&ehci_platform_pm_ops),
 		.of_match_table = vt8500_ehci_ids,
 		.acpi_match_table = ACPI_PTR(ehci_acpi_match),
 	}
-- 
2.28.0


WARNING: multiple messages have this Message-ID (diff)
From: Paul Cercueil <paul@crapouillou.net>
To: Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
	Peter Chen <Peter.Chen@nxp.com>,
	Cristian Birsan <cristian.birsan@microchip.com>,
	Felipe Balbi <balbi@kernel.org>,
	Nicolas Ferre <nicolas.ferre@microchip.com>,
	Alexandre Belloni <alexandre.belloni@bootlin.com>,
	Ludovic Desroches <ludovic.desroches@microchip.com>,
	Avi Fishman <avifishman70@gmail.com>,
	Tomer Maimon <tmaimon77@gmail.com>,
	Tali Perry <tali.perry1@gmail.com>,
	Patrick Venture <venture@google.com>,
	Nancy Yuen <yuenn@google.com>,
	Benjamin Fair <benjaminfair@google.com>,
	Alan Stern <stern@rowland.harvard.edu>,
	Tony Prisk <linux@prisktech.co.nz>, Bin Liu <b-liu@ti.com>,
	Shawn Guo <shawnguo@kernel.org>,
	Sascha Hauer <s.hauer@pengutronix.de>,
	Pengutronix Kernel Team <kernel@pengutronix.de>,
	Fabio Estevam <festevam@gmail.com>,
	NXP Linux Team <linux-imx@nxp.com>
Cc: Paul Cercueil <paul@crapouillou.net>,
	openbmc@lists.ozlabs.org, linux-usb@vger.kernel.org,
	linux-kernel@vger.kernel.org,
	linux-arm-kernel@lists.infradead.org
Subject: [PATCH 04/20] usb/host: ehci-platform: Use pm_ptr() macro
Date: Thu,  3 Sep 2020 13:25:38 +0200	[thread overview]
Message-ID: <20200903112554.34263-5-paul@crapouillou.net> (raw)
In-Reply-To: <20200903112554.34263-1-paul@crapouillou.net>

Use the newly introduced pm_ptr() macro, and mark the suspend/resume
functions __maybe_unused. These functions can then be moved outside the
CONFIG_PM_SUSPEND block, and the compiler can then process them and
detect build failures independently of the config. If unused, they will
simply be discarded by the compiler.

Signed-off-by: Paul Cercueil <paul@crapouillou.net>
---
 drivers/usb/host/ehci-platform.c | 8 +++-----
 1 file changed, 3 insertions(+), 5 deletions(-)

diff --git a/drivers/usb/host/ehci-platform.c b/drivers/usb/host/ehci-platform.c
index 006c4f6188a5..4585a3a24678 100644
--- a/drivers/usb/host/ehci-platform.c
+++ b/drivers/usb/host/ehci-platform.c
@@ -410,8 +410,7 @@ static int ehci_platform_remove(struct platform_device *dev)
 	return 0;
 }
 
-#ifdef CONFIG_PM_SLEEP
-static int ehci_platform_suspend(struct device *dev)
+static int __maybe_unused ehci_platform_suspend(struct device *dev)
 {
 	struct usb_hcd *hcd = dev_get_drvdata(dev);
 	struct usb_ehci_pdata *pdata = dev_get_platdata(dev);
@@ -433,7 +432,7 @@ static int ehci_platform_suspend(struct device *dev)
 	return ret;
 }
 
-static int ehci_platform_resume(struct device *dev)
+static int __maybe_unused ehci_platform_resume(struct device *dev)
 {
 	struct usb_hcd *hcd = dev_get_drvdata(dev);
 	struct usb_ehci_pdata *pdata = dev_get_platdata(dev);
@@ -464,7 +463,6 @@ static int ehci_platform_resume(struct device *dev)
 
 	return 0;
 }
-#endif /* CONFIG_PM_SLEEP */
 
 static const struct of_device_id vt8500_ehci_ids[] = {
 	{ .compatible = "via,vt8500-ehci", },
@@ -499,7 +497,7 @@ static struct platform_driver ehci_platform_driver = {
 	.shutdown	= usb_hcd_platform_shutdown,
 	.driver		= {
 		.name	= "ehci-platform",
-		.pm	= &ehci_platform_pm_ops,
+		.pm	= pm_ptr(&ehci_platform_pm_ops),
 		.of_match_table = vt8500_ehci_ids,
 		.acpi_match_table = ACPI_PTR(ehci_acpi_match),
 	}
-- 
2.28.0


_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

  parent reply	other threads:[~2020-09-03 15:19 UTC|newest]

Thread overview: 52+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-09-03 11:25 [PATCH 00/20] usb: Use new pm_ptr() macro Paul Cercueil
2020-09-03 11:25 ` Paul Cercueil
2020-09-03 11:25 ` [PATCH 01/20] usb/host: ohci-platform: Use " Paul Cercueil
2020-09-03 11:25   ` Paul Cercueil
2020-09-03 15:34   ` Alan Stern
2020-09-03 11:25 ` [PATCH 02/20] usb/host: ehci-spear: " Paul Cercueil
2020-09-03 11:25   ` Paul Cercueil
2020-09-03 11:25 ` [PATCH 03/20] usb/host: ehci-npcm7xx: " Paul Cercueil
2020-09-03 11:25   ` Paul Cercueil
2020-09-03 11:25 ` Paul Cercueil [this message]
2020-09-03 11:25   ` [PATCH 04/20] usb/host: ehci-platform: " Paul Cercueil
2020-09-03 15:47   ` Alan Stern
2020-09-03 11:25 ` [PATCH 05/20] usb/cdns3: core: " Paul Cercueil
2020-09-03 11:25   ` Paul Cercueil
2020-09-03 11:25 ` [PATCH 06/20] usb/chipidea: " Paul Cercueil
2020-09-03 11:25   ` Paul Cercueil
2020-09-05  0:02   ` Peter Chen
2020-09-05  0:02     ` Peter Chen
2020-09-05  0:02     ` Peter Chen
2020-09-03 11:25 ` [PATCH 07/20] usb/misc: usb3503: " Paul Cercueil
2020-09-03 11:25   ` Paul Cercueil
2020-09-03 11:25 ` [PATCH 08/20] usb/misc: usb4604: " Paul Cercueil
2020-09-03 11:25   ` Paul Cercueil
2020-09-03 11:25 ` [PATCH 09/20] usb/musb: am35x: " Paul Cercueil
2020-09-03 11:25   ` Paul Cercueil
2020-09-03 11:25 ` [PATCH 10/20] usb/musb: da8xx: " Paul Cercueil
2020-09-03 11:25   ` Paul Cercueil
2020-09-03 11:25 ` [PATCH 11/20] usb/musb: musb_dsps: " Paul Cercueil
2020-09-03 11:25   ` Paul Cercueil
2020-09-03 11:25 ` [PATCH 12/20] usb/musb: ux500: " Paul Cercueil
2020-09-03 11:25   ` Paul Cercueil
2020-09-03 11:25 ` [PATCH 13/20] usb/phy: am335x: " Paul Cercueil
2020-09-03 11:25   ` Paul Cercueil
2020-09-03 11:25 ` [PATCH 14/20] usb/phy: mxs-usb: " Paul Cercueil
2020-09-03 11:25   ` Paul Cercueil
2020-09-05  0:08   ` Peter Chen
2020-09-05  0:08     ` Peter Chen
2020-09-05  0:08     ` Peter Chen
2020-09-07  6:07   ` Felipe Balbi
2020-09-07  6:07     ` Felipe Balbi
2020-09-03 11:25 ` [PATCH 15/20] usb/gadget/udc: atmel: " Paul Cercueil
2020-09-03 11:25   ` Paul Cercueil
2020-09-03 11:25 ` [PATCH 16/20] usb/gadget/udc: bdc: " Paul Cercueil
2020-09-03 11:25   ` Paul Cercueil
2020-09-03 11:25 ` [PATCH 17/20] usb/gadget/udc: mv-u3d: " Paul Cercueil
2020-09-03 11:25   ` Paul Cercueil
2020-09-03 11:25 ` [PATCH 18/20] usb/gadget/udc: pch: " Paul Cercueil
2020-09-03 11:25   ` Paul Cercueil
2020-09-03 11:25 ` [PATCH 19/20] usb/gadget/udc: renesas: " Paul Cercueil
2020-09-03 11:25   ` Paul Cercueil
2020-09-03 11:25 ` [PATCH 20/20] usb/gadget/udc: snps: " Paul Cercueil
2020-09-03 11:25   ` Paul Cercueil

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=20200903112554.34263-5-paul@crapouillou.net \
    --to=paul@crapouillou.net \
    --cc=Peter.Chen@nxp.com \
    --cc=alexandre.belloni@bootlin.com \
    --cc=avifishman70@gmail.com \
    --cc=b-liu@ti.com \
    --cc=balbi@kernel.org \
    --cc=benjaminfair@google.com \
    --cc=cristian.birsan@microchip.com \
    --cc=festevam@gmail.com \
    --cc=gregkh@linuxfoundation.org \
    --cc=kernel@pengutronix.de \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux-imx@nxp.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-usb@vger.kernel.org \
    --cc=linux@prisktech.co.nz \
    --cc=ludovic.desroches@microchip.com \
    --cc=nicolas.ferre@microchip.com \
    --cc=openbmc@lists.ozlabs.org \
    --cc=s.hauer@pengutronix.de \
    --cc=shawnguo@kernel.org \
    --cc=stern@rowland.harvard.edu \
    --cc=tali.perry1@gmail.com \
    --cc=tmaimon77@gmail.com \
    --cc=venture@google.com \
    --cc=yuenn@google.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.