usb: phy: phy-mxs-usb: Simplify return statement
Replace redundant variable use in return statement. Signed-off-by: Saurabh Karajgaonkar <skarajga@visteon.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
135551ea1a
commit
082155eabf
|
@ -506,11 +506,7 @@ static int mxs_phy_probe(struct platform_device *pdev)
|
|||
|
||||
device_set_wakeup_capable(&pdev->dev, true);
|
||||
|
||||
ret = usb_add_phy_dev(&mxs_phy->phy);
|
||||
if (ret)
|
||||
return ret;
|
||||
|
||||
return 0;
|
||||
return usb_add_phy_dev(&mxs_phy->phy);
|
||||
}
|
||||
|
||||
static int mxs_phy_remove(struct platform_device *pdev)
|
||||
|
|
Loading…
Reference in New Issue