Change goto labels in this file to meaningful names Signed-off-by: Shuah Khan <shuahkh@xxxxxxxxxxxxxxx> --- drivers/usb/dwc3/dwc3-exynos.c | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/drivers/usb/dwc3/dwc3-exynos.c b/drivers/usb/dwc3/dwc3-exynos.c index 98f74ff..11f31f4 100644 --- a/drivers/usb/dwc3/dwc3-exynos.c +++ b/drivers/usb/dwc3/dwc3-exynos.c @@ -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; -- 2.7.4 -- To unsubscribe from this list: send the line "unsubscribe linux-samsung-soc" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html