]> git.kernelconcepts.de Git - karo-tx-uboot.git/commitdiff
USB: gadget: save driver name before registering it
authorStephen Warren <swarren@nvidia.com>
Thu, 1 May 2014 21:45:16 +0000 (15:45 -0600)
committerLukasz Majewski <l.majewski@samsung.com>
Mon, 5 May 2014 06:33:13 +0000 (08:33 +0200)
g_dnl_register() currently first attempts to register a composite
driver by name, and then saves the driver name once it's registered.
Internally to the registration code, g_dnl_do_config() is called and
attempts to compare the composite device's name with the list of known
device names. This fails since the composite device's name has not yet
been stored. This means that the first time "ums 0 0" is run, it fails,
but subsequent attempts succeed.

Re-order the name-saving and registration code to solve this.

Fixes: e5b834e07f51 ("USB: gadget: added a saner gadget downloader registration API")
Signed-off-by: Stephen Warren <swarren@nvidia.com>
drivers/usb/gadget/g_dnl.c

index 743bae535ac8607ed02ad41f726e44b8022ffe00..25611acd607f21a39010a3c207ba70f39463c0c2 100644 (file)
@@ -245,11 +245,12 @@ static struct usb_composite_driver g_dnl_driver = {
  */
 int g_dnl_register(const char *name)
 {
-       int ret = usb_composite_register(&g_dnl_driver);
+       int ret;
 
        debug("%s: g_dnl_driver.name = %s\n", __func__, name);
        g_dnl_driver.name = name;
 
+       ret = usb_composite_register(&g_dnl_driver);
        if (ret) {
                printf("%s: failed!, error: %d\n", __func__, ret);
                return ret;