diff mbox series

[v2,1/1] phy: fsl-imx8mq-usb: add dev_err_probe if getting vbus failed

Message ID 20230816080256.611380-1-alexander.stein@ew.tq-group.com
State Accepted
Commit a11ecceaf41d2dd542228007940652fea7532276
Headers show
Series [v2,1/1] phy: fsl-imx8mq-usb: add dev_err_probe if getting vbus failed | expand

Commit Message

Alexander Stein Aug. 16, 2023, 8:02 a.m. UTC
This adds an error message if getting vbus failed for some reason,
-EPROBE_DEFER is handled appropriately as well and adds a nice
information to debugfs.

Signed-off-by: Alexander Stein <alexander.stein@ew.tq-group.com>
---
Changes in v2:
* Fixed local patch order to get rid of dependencies
* Rebased to next-20230816

 drivers/phy/freescale/phy-fsl-imx8mq-usb.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

Vinod Koul Aug. 17, 2023, 9:55 a.m. UTC | #1
On Wed, 16 Aug 2023 10:02:56 +0200, Alexander Stein wrote:
> This adds an error message if getting vbus failed for some reason,
> -EPROBE_DEFER is handled appropriately as well and adds a nice
> information to debugfs.
> 
> 

Applied, thanks!

[1/1] phy: fsl-imx8mq-usb: add dev_err_probe if getting vbus failed
      commit: a11ecceaf41d2dd542228007940652fea7532276

Best regards,
diff mbox series

Patch

diff --git a/drivers/phy/freescale/phy-fsl-imx8mq-usb.c b/drivers/phy/freescale/phy-fsl-imx8mq-usb.c
index e1d769402696..0b9a59d5b8f0 100644
--- a/drivers/phy/freescale/phy-fsl-imx8mq-usb.c
+++ b/drivers/phy/freescale/phy-fsl-imx8mq-usb.c
@@ -394,7 +394,7 @@  static int imx8mq_usb_phy_probe(struct platform_device *pdev)
 
 	imx_phy->vbus = devm_regulator_get(dev, "vbus");
 	if (IS_ERR(imx_phy->vbus))
-		return PTR_ERR(imx_phy->vbus);
+		return dev_err_probe(dev, PTR_ERR(imx_phy->vbus), "failed to get vbus\n");
 
 	phy_set_drvdata(imx_phy->phy, imx_phy);