@@ -396,11 +396,8 @@ 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))