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:
Родитель
4b68b50fd4
Коммит
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)
|
||||
|
|
Загрузка…
Ссылка в новой задаче