From: Markus Elfring <elfr...@users.sourceforge.net>
Date: Sun, 25 Dec 2016 10:57:12 +0100

Adjust jump labels according to the Linux coding style convention.

Signed-off-by: Markus Elfring <elfr...@users.sourceforge.net>
---
 drivers/media/usb/uvc/uvc_driver.c | 9 ++++-----
 1 file changed, 4 insertions(+), 5 deletions(-)

diff --git a/drivers/media/usb/uvc/uvc_driver.c 
b/drivers/media/usb/uvc/uvc_driver.c
index f91965d0da97..c4e954aecdd5 100644
--- a/drivers/media/usb/uvc/uvc_driver.c
+++ b/drivers/media/usb/uvc/uvc_driver.c
@@ -1698,7 +1698,7 @@ static int uvc_scan_fallback(struct uvc_device *dev)
                return -ENOMEM;
 
        if (uvc_scan_chain_entity(chain, oterm) < 0)
-               goto error;
+               goto free_chain;
 
        prev = oterm;
 
@@ -1718,14 +1718,14 @@ static int uvc_scan_fallback(struct uvc_device *dev)
                        continue;
 
                if (uvc_scan_chain_entity(chain, entity) < 0)
-                       goto error;
+                       goto free_chain;
 
                prev->baSourceID[0] = entity->id;
                prev = entity;
        }
 
        if (uvc_scan_chain_entity(chain, iterm) < 0)
-               goto error;
+               goto free_chain;
 
        prev->baSourceID[0] = iterm->id;
 
@@ -1736,8 +1736,7 @@ static int uvc_scan_fallback(struct uvc_device *dev)
                  uvc_print_chain(chain));
 
        return 0;
-
-error:
+free_chain:
        kfree(chain);
        return -EINVAL;
 }
-- 
2.11.0

--
To unsubscribe from this list: send the line "unsubscribe linux-media" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to