diff options
author | Felipe Balbi <balbi@ti.com> | 2013-02-26 09:24:30 (GMT) |
---|---|---|
committer | Felipe Balbi <balbi@ti.com> | 2013-03-18 09:17:29 (GMT) |
commit | 31bff47aa2147ceab5d88a12f115afa44cdf4449 (patch) | |
tree | d92609c47660544d371d192705c73a1cc4e9bd33 | |
parent | 4c422049bd0f373b79b3dfbb7f984958c80bc7aa (diff) | |
download | linux-31bff47aa2147ceab5d88a12f115afa44cdf4449.tar.xz |
usb: gadget: s3c2410_udc: remove unnecessary initializations
udc-core now sets dma-related and parent fields
for us, we don't need to do it ourselves.
Signed-off-by: Felipe Balbi <balbi@ti.com>
-rw-r--r-- | drivers/usb/gadget/s3c2410_udc.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/drivers/usb/gadget/s3c2410_udc.c b/drivers/usb/gadget/s3c2410_udc.c index a669081..e15d1bb 100644 --- a/drivers/usb/gadget/s3c2410_udc.c +++ b/drivers/usb/gadget/s3c2410_udc.c @@ -1824,9 +1824,6 @@ static int s3c2410_udc_probe(struct platform_device *pdev) goto err_mem; } - udc->gadget.dev.parent = &pdev->dev; - udc->gadget.dev.dma_mask = pdev->dev.dma_mask; - the_controller = udc; platform_set_drvdata(pdev, udc); |