public inbox for linux-arm-kernel@lists.infradead.org
 help / color / mirror / Atom feed
* [PATCH 1/2] phy: stm32: don't print an error on probe deferral
@ 2020-11-10 10:23 Amelie Delaunay
  2020-11-10 10:23 ` [PATCH 2/2] phy: stm32: defer probe for reset controller Amelie Delaunay
  2020-11-16  7:37 ` [PATCH 1/2] phy: stm32: don't print an error on probe deferral Vinod Koul
  0 siblings, 2 replies; 6+ messages in thread
From: Amelie Delaunay @ 2020-11-10 10:23 UTC (permalink / raw)
  To: Kishon Vijay Abraham I, Vinod Koul, Alexandre Torgue,
	Maxime Coquelin, Etienne Carriere
  Cc: Amelie Delaunay, linux-kernel, linux-arm-kernel, linux-stm32

Change stm32-usbphyc driver to not print an error message when the device
probe operation is deferred.

Signed-off-by: Etienne Carriere <etienne.carriere@st.com>
Signed-off-by: Amelie Delaunay <amelie.delaunay@st.com>
---
 drivers/phy/st/phy-stm32-usbphyc.c | 7 ++-----
 1 file changed, 2 insertions(+), 5 deletions(-)

diff --git a/drivers/phy/st/phy-stm32-usbphyc.c b/drivers/phy/st/phy-stm32-usbphyc.c
index 2b3639cba51a..fe3085eec201 100644
--- a/drivers/phy/st/phy-stm32-usbphyc.c
+++ b/drivers/phy/st/phy-stm32-usbphyc.c
@@ -328,11 +328,8 @@ static int stm32_usbphyc_probe(struct platform_device *pdev)
 		return PTR_ERR(usbphyc->base);
 
 	usbphyc->clk = devm_clk_get(dev, NULL);
-	if (IS_ERR(usbphyc->clk)) {
-		ret = PTR_ERR(usbphyc->clk);
-		dev_err(dev, "clk get failed: %d\n", ret);
-		return ret;
-	}
+	if (IS_ERR(usbphyc->clk))
+		dev_err_probe(dev, PTR_ERR(usbphyc->clk), "clk get_failed\n");
 
 	ret = clk_prepare_enable(usbphyc->clk);
 	if (ret) {
-- 
2.17.1


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

^ permalink raw reply related	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2020-11-16 10:20 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-11-10 10:23 [PATCH 1/2] phy: stm32: don't print an error on probe deferral Amelie Delaunay
2020-11-10 10:23 ` [PATCH 2/2] phy: stm32: defer probe for reset controller Amelie Delaunay
2020-11-16  7:37 ` [PATCH 1/2] phy: stm32: don't print an error on probe deferral Vinod Koul
2020-11-16  8:02   ` Amelie DELAUNAY
2020-11-16  9:50     ` Vinod Koul
2020-11-16 10:18       ` Amelie DELAUNAY

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox