usb: gadget: s3c2410_udc: fix error return code in s3c2410_udc_probe()
authorWei Yongjun <[email protected]>
Tue, 7 May 2013 11:48:22 +0000 (19:48 +0800)
committerFelipe Balbi <[email protected]>
Wed, 15 May 2013 14:24:39 +0000 (17:24 +0300)
Fix to return a negative error code in the gpio_to_irq() error handling
case instead of 0, as done elsewhere in this function.

Reviewed-by: Jingoo Han <[email protected]>
Signed-off-by: Wei Yongjun <[email protected]>
Signed-off-by: Felipe Balbi <[email protected]>
drivers/usb/gadget/s3c2410_udc.c

index 7f5e3a66d02ae31e60c74ce7e51773345bb9eb78..09c4f70c93c4cb13639cf89ed7d423c2231df621 100644 (file)
@@ -1851,6 +1851,7 @@ static int s3c2410_udc_probe(struct platform_device *pdev)
                irq = gpio_to_irq(udc_info->vbus_pin);
                if (irq < 0) {
                        dev_err(dev, "no irq for gpio vbus pin\n");
+                       retval = irq;
                        goto err_gpio_claim;
                }