Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 52864814 authored by zhong jiang's avatar zhong jiang Committed by Kishon Vijay Abraham I
Browse files

phy:phy-brcm-usb: Use PTR_ERR_OR_ZERO to replace the open coded version



PTR_ERR_OR_ZERO has implemented the if(IS_ERR(...)) + PTR_ERR, So
just replace them rather than duplicating its implement.

Signed-off-by: default avatarzhong jiang <zhongjiang@huawei.com>
Signed-off-by: default avatarKishon Vijay Abraham I <kishon@ti.com>
parent eee0e5da
Loading
Loading
Loading
Loading
+1 −3
Original line number Diff line number Diff line
@@ -372,10 +372,8 @@ static int brcm_usb_phy_probe(struct platform_device *pdev)
	clk_disable(priv->usb_30_clk);

	phy_provider = devm_of_phy_provider_register(dev, brcm_usb_phy_xlate);
	if (IS_ERR(phy_provider))
		return PTR_ERR(phy_provider);

	return 0;
	return PTR_ERR_OR_ZERO(phy_provider);
}

#ifdef CONFIG_PM_SLEEP