@@ -58,12 +58,12 @@ static int dwc3_exynos_register_phys(struct dwc3_exynos *exynos)
ret = platform_device_add_data(exynos->usb2_phy, &pdata, sizeof(pdata));
if (ret)
- goto err1;
+ goto usb2_phy_device_put;
pdev = platform_device_alloc("usb_phy_generic", PLATFORM_DEVID_AUTO);
if (!pdev) {
ret = -ENOMEM;
- goto err1;
+ goto usb2_phy_device_put;
}
exynos->usb3_phy = pdev;
@@ -71,25 +71,25 @@ static int dwc3_exynos_register_phys(struct dwc3_exynos *exynos)
ret = platform_device_add_data(exynos->usb3_phy, &pdata, sizeof(pdata));
if (ret)
- goto err2;
+ goto usb3_phy_device_put;
ret = platform_device_add(exynos->usb2_phy);
if (ret)
- goto err2;
+ goto usb3_phy_device_put;
ret = platform_device_add(exynos->usb3_phy);
if (ret)
- goto err3;
+ goto usb2_phy_device_del;
return 0;
-err3:
+usb2_phy_device_del:
platform_device_del(exynos->usb2_phy);
-err2:
+usb3_phy_device_put:
platform_device_put(exynos->usb3_phy);
-err1:
+usb2_phy_device_put:
platform_device_put(exynos->usb2_phy);
return ret;
Change goto labels in this file to meaningful names Signed-off-by: Shuah Khan <shuahkh@osg.samsung.com> --- drivers/usb/dwc3/dwc3-exynos.c | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-)