diff options
author | Sachin Kamat <sachin.kamat@linaro.org> | 2013-05-06 15:37:24 +0400 |
---|---|---|
committer | Felipe Balbi <balbi@ti.com> | 2013-05-15 18:22:06 +0400 |
commit | c0b4e04d1a984dec4d6704ac3fcf289b1cb32993 (patch) | |
tree | 0f66543caa87cb4327fe5bccd884f2eb9e4fa3fc /drivers/usb/gadget/pxa25x_udc.c | |
parent | 2673976f7a80dfdf1b590e40c773aee01e62ada7 (diff) | |
download | linux-c0b4e04d1a984dec4d6704ac3fcf289b1cb32993.tar.xz |
usb: gadget: pxa25x_udc: Remove redundant platform_set_drvdata()
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: Eric Miao <eric.y.miao@gmail.com>
Signed-off-by: Felipe Balbi <balbi@ti.com>
Diffstat (limited to 'drivers/usb/gadget/pxa25x_udc.c')
-rw-r--r-- | drivers/usb/gadget/pxa25x_udc.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/usb/gadget/pxa25x_udc.c b/drivers/usb/gadget/pxa25x_udc.c index ef47495dec8f..95c531d5aa4f 100644 --- a/drivers/usb/gadget/pxa25x_udc.c +++ b/drivers/usb/gadget/pxa25x_udc.c @@ -2236,7 +2236,6 @@ static int __exit pxa25x_udc_remove(struct platform_device *pdev) dev->transceiver = NULL; } - platform_set_drvdata(pdev, NULL); the_controller = NULL; return 0; } |