]> git.openfabrics.org - ~shefty/rdma-dev.git/commitdiff
usb: gadget: at91_udc: let udc-core manage gadget->dev
authorFelipe Balbi <balbi@ti.com>
Thu, 24 Jan 2013 13:15:30 +0000 (15:15 +0200)
committerFelipe Balbi <balbi@ti.com>
Mon, 18 Mar 2013 09:16:42 +0000 (11:16 +0200)
By simply setting a flag, we can remove some
boilerplate code.

Signed-off-by: Felipe Balbi <balbi@ti.com>
drivers/usb/gadget/at91_udc.c

index 45dd2929a6710227fc13761503177774153539a8..47b7e58f841591da7f1f718faa6589ae4f2f3367 100644 (file)
@@ -1726,6 +1726,7 @@ static int at91udc_probe(struct platform_device *pdev)
 
        /* init software state */
        udc = &controller;
+       udc->gadget.register_my_device = true;
        udc->gadget.dev.parent = dev;
        if (pdev->dev.of_node)
                at91udc_of_init(udc, pdev->dev.of_node);
@@ -1780,13 +1781,7 @@ static int at91udc_probe(struct platform_device *pdev)
                DBG("clocks missing\n");
                retval = -ENODEV;
                /* NOTE: we "know" here that refcounts on these are NOPs */
-               goto fail0b;
-       }
-
-       retval = device_register(&udc->gadget.dev);
-       if (retval < 0) {
-               put_device(&udc->gadget.dev);
-               goto fail0b;
+               goto fail1;
        }
 
        /* don't do anything until we have both gadget driver and VBUS */
@@ -1857,8 +1852,6 @@ fail3:
 fail2:
        free_irq(udc->udp_irq, udc);
 fail1:
-       device_unregister(&udc->gadget.dev);
-fail0b:
        iounmap(udc->udp_baseaddr);
 fail0a:
        if (cpu_is_at91rm9200())
@@ -1892,8 +1885,6 @@ static int __exit at91udc_remove(struct platform_device *pdev)
                gpio_free(udc->board.vbus_pin);
        }
        free_irq(udc->udp_irq, udc);
-       device_unregister(&udc->gadget.dev);
-
        iounmap(udc->udp_baseaddr);
 
        if (cpu_is_at91rm9200())