Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S936794AbdCYAGR (ORCPT ); Fri, 24 Mar 2017 20:06:17 -0400 Received: from ec2-52-27-115-49.us-west-2.compute.amazonaws.com ([52.27.115.49]:58323 "EHLO osg.samsung.com" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S936645AbdCYAFS (ORCPT ); Fri, 24 Mar 2017 20:05:18 -0400 X-Amavis-Alert: BAD HEADER SECTION, Duplicate header field: "References" From: Shuah Khan To: balbi@kernel.org, gregkh@linuxfoundation.org, kgene@kernel.org, krzk@kernel.org, javier@osg.samsung.com Cc: Shuah Khan , linux-usb@vger.kernel.org, linux-kernel@vger.kernel.org, linux-arm-kernel@lists.infradead.org, linux-samsung-soc@vger.kernel.org, linux-omap@vger.kernel.org Subject: [PATCH 4/7] usb: dwc3: exynos: change goto labels in this file to meaningful names Date: Fri, 24 Mar 2017 18:05:02 -0600 Message-Id: X-Mailer: git-send-email 2.9.3 In-Reply-To: References: In-Reply-To: References: Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1471 Lines: 60 Change goto labels in this file to meaningful names Signed-off-by: Shuah Khan --- 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