Commit 319feaab authored by Dan Carpenter's avatar Dan Carpenter Committed by Greg Kroah-Hartman

usb: gadget: goku_udc: Fix error path

This is based on an initial patch by Rahul Ruikar.

The goku_remove() function can be called before device_register() so it
can call device_unregister() improperly.  Also if the call to
device_register() fails we need to call put_device().

As I was changing the error handling in goku_probe(), I noticed that
the label was "done" but actually if the function succeeds we return
earlier.  I renamed the error path to "err" instead of "done."
Reported-by: default avatarRahul Ruikar <rahul.ruikar@gmail.com>
Signed-off-by: default avatarDan Carpenter <error27@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
parent d0cc3d41
...@@ -1745,7 +1745,8 @@ static void goku_remove(struct pci_dev *pdev) ...@@ -1745,7 +1745,8 @@ static void goku_remove(struct pci_dev *pdev)
pci_resource_len (pdev, 0)); pci_resource_len (pdev, 0));
if (dev->enabled) if (dev->enabled)
pci_disable_device(pdev); pci_disable_device(pdev);
device_unregister(&dev->gadget.dev); if (dev->registered)
device_unregister(&dev->gadget.dev);
pci_set_drvdata(pdev, NULL); pci_set_drvdata(pdev, NULL);
dev->regs = NULL; dev->regs = NULL;
...@@ -1775,7 +1776,7 @@ static int goku_probe(struct pci_dev *pdev, const struct pci_device_id *id) ...@@ -1775,7 +1776,7 @@ static int goku_probe(struct pci_dev *pdev, const struct pci_device_id *id)
if (!pdev->irq) { if (!pdev->irq) {
printk(KERN_ERR "Check PCI %s IRQ setup!\n", pci_name(pdev)); printk(KERN_ERR "Check PCI %s IRQ setup!\n", pci_name(pdev));
retval = -ENODEV; retval = -ENODEV;
goto done; goto err;
} }
/* alloc, and start init */ /* alloc, and start init */
...@@ -1783,7 +1784,7 @@ static int goku_probe(struct pci_dev *pdev, const struct pci_device_id *id) ...@@ -1783,7 +1784,7 @@ static int goku_probe(struct pci_dev *pdev, const struct pci_device_id *id)
if (dev == NULL){ if (dev == NULL){
pr_debug("enomem %s\n", pci_name(pdev)); pr_debug("enomem %s\n", pci_name(pdev));
retval = -ENOMEM; retval = -ENOMEM;
goto done; goto err;
} }
spin_lock_init(&dev->lock); spin_lock_init(&dev->lock);
...@@ -1801,7 +1802,7 @@ static int goku_probe(struct pci_dev *pdev, const struct pci_device_id *id) ...@@ -1801,7 +1802,7 @@ static int goku_probe(struct pci_dev *pdev, const struct pci_device_id *id)
retval = pci_enable_device(pdev); retval = pci_enable_device(pdev);
if (retval < 0) { if (retval < 0) {
DBG(dev, "can't enable, %d\n", retval); DBG(dev, "can't enable, %d\n", retval);
goto done; goto err;
} }
dev->enabled = 1; dev->enabled = 1;
...@@ -1810,7 +1811,7 @@ static int goku_probe(struct pci_dev *pdev, const struct pci_device_id *id) ...@@ -1810,7 +1811,7 @@ static int goku_probe(struct pci_dev *pdev, const struct pci_device_id *id)
if (!request_mem_region(resource, len, driver_name)) { if (!request_mem_region(resource, len, driver_name)) {
DBG(dev, "controller already in use\n"); DBG(dev, "controller already in use\n");
retval = -EBUSY; retval = -EBUSY;
goto done; goto err;
} }
dev->got_region = 1; dev->got_region = 1;
...@@ -1818,7 +1819,7 @@ static int goku_probe(struct pci_dev *pdev, const struct pci_device_id *id) ...@@ -1818,7 +1819,7 @@ static int goku_probe(struct pci_dev *pdev, const struct pci_device_id *id)
if (base == NULL) { if (base == NULL) {
DBG(dev, "can't map memory\n"); DBG(dev, "can't map memory\n");
retval = -EFAULT; retval = -EFAULT;
goto done; goto err;
} }
dev->regs = (struct goku_udc_regs __iomem *) base; dev->regs = (struct goku_udc_regs __iomem *) base;
...@@ -1834,7 +1835,7 @@ static int goku_probe(struct pci_dev *pdev, const struct pci_device_id *id) ...@@ -1834,7 +1835,7 @@ static int goku_probe(struct pci_dev *pdev, const struct pci_device_id *id)
driver_name, dev) != 0) { driver_name, dev) != 0) {
DBG(dev, "request interrupt %d failed\n", pdev->irq); DBG(dev, "request interrupt %d failed\n", pdev->irq);
retval = -EBUSY; retval = -EBUSY;
goto done; goto err;
} }
dev->got_irq = 1; dev->got_irq = 1;
if (use_dma) if (use_dma)
...@@ -1845,13 +1846,16 @@ static int goku_probe(struct pci_dev *pdev, const struct pci_device_id *id) ...@@ -1845,13 +1846,16 @@ static int goku_probe(struct pci_dev *pdev, const struct pci_device_id *id)
create_proc_read_entry(proc_node_name, 0, NULL, udc_proc_read, dev); create_proc_read_entry(proc_node_name, 0, NULL, udc_proc_read, dev);
#endif #endif
/* done */
the_controller = dev; the_controller = dev;
retval = device_register(&dev->gadget.dev); retval = device_register(&dev->gadget.dev);
if (retval == 0) if (retval) {
return 0; put_device(&dev->gadget.dev);
goto err;
}
dev->registered = 1;
return 0;
done: err:
if (dev) if (dev)
goku_remove (pdev); goku_remove (pdev);
return retval; return retval;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment