]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
usb: gadget: dummy_hcd: Remove redundant platform_set_drvdata()
authorSachin Kamat <sachin.kamat@linaro.org>
Mon, 6 May 2013 11:37:21 +0000 (17:07 +0530)
committerFelipe Balbi <balbi@ti.com>
Wed, 15 May 2013 14:21:09 +0000 (17:21 +0300)
Commit 0998d06310 (device-core: Ensure drvdata = NULL when no
driver is bound) removes the need to set driver data field to
NULL.

Signed-off-by: Sachin Kamat <sachin.kamat@linaro.org>
Cc: Alan Stern <stern@rowland.harvard.edu>
Signed-off-by: Felipe Balbi <balbi@ti.com>
drivers/usb/gadget/dummy_hcd.c

index a792e322f4f1b84c58e20538b48d1e7beea4082f..22236ecb2e29fa2fee6433e93c56356568826c6c 100644 (file)
@@ -1001,7 +1001,6 @@ static int dummy_udc_remove(struct platform_device *pdev)
        struct dummy    *dum = platform_get_drvdata(pdev);
 
        usb_del_gadget_udc(&dum->gadget);
-       platform_set_drvdata(pdev, NULL);
        device_remove_file(&dum->gadget.dev, &dev_attr_function);
        return 0;
 }