mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-11-25 07:10:50 +07:00
usb: phy: phy-keystone: Simplify return statement
Replace redundant variable use in return statement. Signed-off-by: Saurabh Karajgaonkar <skarajga@visteon.com> Signed-off-by: Felipe Balbi <balbi@ti.com>
This commit is contained in:
parent
4b68b50fd4
commit
c5673f5ce4
@ -96,11 +96,7 @@ static int keystone_usbphy_probe(struct platform_device *pdev)
|
||||
|
||||
platform_set_drvdata(pdev, k_phy);
|
||||
|
||||
ret = usb_add_phy_dev(&k_phy->usb_phy_gen.phy);
|
||||
if (ret)
|
||||
return ret;
|
||||
|
||||
return 0;
|
||||
return usb_add_phy_dev(&k_phy->usb_phy_gen.phy);
|
||||
}
|
||||
|
||||
static int keystone_usbphy_remove(struct platform_device *pdev)
|
||||
|
Loading…
Reference in New Issue
Block a user