Commit 836a2164 authored by Wei Yongjun's avatar Wei Yongjun Committed by Felipe Balbi

usb: phy: keystone: remove redundant return value check of platform_get_resource()

Remove unneeded error handling on the result of a call
to platform_get_resource() when the value is passed to
devm_ioremap_resource().
Signed-off-by: default avatarWei Yongjun <yongjun_wei@trendmicro.com.cn>
Signed-off-by: default avatarFelipe Balbi <balbi@ti.com>
parent 89f836a8
...@@ -83,11 +83,6 @@ static int keystone_usbphy_probe(struct platform_device *pdev) ...@@ -83,11 +83,6 @@ static int keystone_usbphy_probe(struct platform_device *pdev)
return -ENOMEM; return -ENOMEM;
res = platform_get_resource(pdev, IORESOURCE_MEM, 0); res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
if (!res) {
dev_err(dev, "missing usb phy resource\n");
return -EINVAL;
}
k_phy->phy_ctrl = devm_ioremap_resource(dev, res); k_phy->phy_ctrl = devm_ioremap_resource(dev, res);
if (IS_ERR(k_phy->phy_ctrl)) if (IS_ERR(k_phy->phy_ctrl))
return PTR_ERR(k_phy->phy_ctrl); return PTR_ERR(k_phy->phy_ctrl);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment