Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 364550
b: refs/heads/master
c: 96d20c3
h: refs/heads/master
v: v3
  • Loading branch information
Felipe Balbi committed Mar 18, 2013
1 parent b9dd104 commit 953e99b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 13 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: e0c9e4739a6f9217f35f1a59807a2f19a4cd7cdd
refs/heads/master: 96d20c32f68b058b4430a6f711124511a2d9b361
13 changes: 1 addition & 12 deletions trunk/drivers/usb/gadget/m66592-udc.c
Original file line number Diff line number Diff line change
Expand Up @@ -1538,7 +1538,6 @@ static int __exit m66592_remove(struct platform_device *pdev)
struct m66592 *m66592 = dev_get_drvdata(&pdev->dev);

usb_del_gadget_udc(&m66592->gadget);
device_del(&m66592->gadget.dev);

del_timer_sync(&m66592->timer);
iounmap(m66592->reg);
Expand Down Expand Up @@ -1608,13 +1607,12 @@ static int __init m66592_probe(struct platform_device *pdev)
dev_set_drvdata(&pdev->dev, m66592);

m66592->gadget.ops = &m66592_gadget_ops;
device_initialize(&m66592->gadget.dev);
dev_set_name(&m66592->gadget.dev, "gadget");
m66592->gadget.max_speed = USB_SPEED_HIGH;
m66592->gadget.dev.parent = &pdev->dev;
m66592->gadget.dev.dma_mask = pdev->dev.dma_mask;
m66592->gadget.dev.release = pdev->dev.release;
m66592->gadget.name = udc_name;
m66592->gadget.register_my_device = true;

init_timer(&m66592->timer);
m66592->timer.function = m66592_timer;
Expand Down Expand Up @@ -1674,12 +1672,6 @@ static int __init m66592_probe(struct platform_device *pdev)

init_controller(m66592);

ret = device_add(&m66592->gadget.dev);
if (ret) {
pr_err("device_add error (%d)\n", ret);
goto err_device_add;
}

ret = usb_add_gadget_udc(&pdev->dev, &m66592->gadget);
if (ret)
goto err_add_udc;
Expand All @@ -1688,9 +1680,6 @@ static int __init m66592_probe(struct platform_device *pdev)
return 0;

err_add_udc:
device_del(&m66592->gadget.dev);

err_device_add:
m66592_free_request(&m66592->ep[0].ep, m66592->ep0_req);

clean_up3:
Expand Down

0 comments on commit 953e99b

Please sign in to comment.