diff options
author | Felipe Balbi <balbi@ti.com> | 2013-02-26 09:52:43 +0100 |
---|---|---|
committer | Felipe Balbi <balbi@ti.com> | 2013-03-18 10:17:18 +0100 |
commit | 036804a4b7089bdff9e5c70805c09ce4133b4440 (patch) | |
tree | a03627fc441eef9f18b8e5b7074e31890a3bcbda /drivers/usb/chipidea | |
parent | usb: gadget: udc-core: initialize parent (diff) | |
download | linux-036804a4b7089bdff9e5c70805c09ce4133b4440.tar.xz linux-036804a4b7089bdff9e5c70805c09ce4133b4440.zip |
usb: gadget: chipidea: 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>
Diffstat (limited to 'drivers/usb/chipidea')
-rw-r--r-- | drivers/usb/chipidea/udc.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/drivers/usb/chipidea/udc.c b/drivers/usb/chipidea/udc.c index 1b65ac8f3c9b..e303fd4b1b93 100644 --- a/drivers/usb/chipidea/udc.c +++ b/drivers/usb/chipidea/udc.c @@ -1717,9 +1717,6 @@ static int udc_start(struct ci13xxx *ci) INIT_LIST_HEAD(&ci->gadget.ep_list); - ci->gadget.dev.dma_mask = dev->dma_mask; - ci->gadget.dev.coherent_dma_mask = dev->coherent_dma_mask; - ci->gadget.dev.parent = dev; ci->gadget.dev.release = udc_release; /* alloc resources */ |