[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <20250402194303339EE86jtSNtWFpLPkS6WiQh@zte.com.cn>
Date: Wed, 2 Apr 2025 19:43:03 +0800 (CST)
From: <shao.mingyin@....com.cn>
To: <vkoul@...nel.org>, <robert.marko@...tura.hr>
Cc: <kishon@...nel.org>, <wens@...e.org>, <jernej.skrabec@...il.com>,
<samuel@...lland.org>, <zhang.enpei@....com.cn>,
<linux-phy@...ts.infradead.org>,
<linux-arm-kernel@...ts.infradead.org>, <linux-sunxi@...ts.linux.dev>,
<linux-kernel@...r.kernel.org>, <luka.perkov@...tura.hr>,
<linux-arm-msm@...r.kernel.org>, <heiko@...ech.de>,
<linux-rockchip@...ts.infradead.org>, <yang.yang29@....com.cn>,
<xu.xin16@....com.cn>, <ye.xingchen@....com.cn>
Subject: [PATCH linux-next 2/5] phy: broadcom: phy-bcm63xx-usbh: Use dev_err_probe()
From: Zhang Enpei <zhang.enpei@....com.cn>
Replace the open-code with dev_err_probe() to simplify the code.
Signed-off-by: Zhang Enpei <zhang.enpei@....com.cn>
Signed-off-by: Shao Mingyin <shao.mingyin@....com.cn>
---
drivers/phy/broadcom/phy-bcm63xx-usbh.c | 8 +++-----
1 file changed, 3 insertions(+), 5 deletions(-)
diff --git a/drivers/phy/broadcom/phy-bcm63xx-usbh.c b/drivers/phy/broadcom/phy-bcm63xx-usbh.c
index 647644de041b..b9e7f750567c 100644
--- a/drivers/phy/broadcom/phy-bcm63xx-usbh.c
+++ b/drivers/phy/broadcom/phy-bcm63xx-usbh.c
@@ -397,11 +397,9 @@ static int __init bcm63xx_usbh_phy_probe(struct platform_device *pdev)
return PTR_ERR(usbh->base);
usbh->reset = devm_reset_control_get_exclusive(dev, NULL);
- if (IS_ERR(usbh->reset)) {
- if (PTR_ERR(usbh->reset) != -EPROBE_DEFER)
- dev_err(dev, "failed to get reset\n");
- return PTR_ERR(usbh->reset);
- }
+ if (IS_ERR(usbh->reset))
+ return dev_err_probe(dev, PTR_ERR(usbh->reset),
+ "failed to get reset\n");
usbh->usbh_clk = devm_clk_get_optional(dev, "usbh");
if (IS_ERR(usbh->usbh_clk))
--
2.25.1
Powered by blists - more mailing lists