usb: gadget: amd5536udc: fix error handling in udc_pci_probe()
authorAlexey Khoroshilov <khoroshilov@ispras.ru>
Sat, 5 Sep 2015 22:11:51 +0000 (01:11 +0300)
committerFelipe Balbi <balbi@ti.com>
Mon, 14 Sep 2015 15:14:51 +0000 (10:14 -0500)
commit6527cc27761a124de8c08e6488ce17fdcc74dbba
tree730081fef49686041d37fba0bd46793b3c4d9225
parent88ccdbd5fc59ce8c69261a20746ca2533be7e358
usb: gadget: amd5536udc: fix error handling in udc_pci_probe()

If a failure happens early in udc_pci_probe(), error handling code
just kfree(dev) and returns. The patch adds proper resource
deallocations in udc_pci_probe() itself,
since udc_pci_remove() is not suitabe to be called so early
in initialization process.

By the way, iounmap(dev->regs) is replaced by iounmap(dev->virt_addr)
in udc_pci_remove() for clarity.

Found by Linux Driver Verification project (linuxtesting.org).

Signed-off-by: Alexey Khoroshilov <khoroshilov@ispras.ru>
Signed-off-by: Felipe Balbi <balbi@ti.com>
drivers/usb/gadget/udc/amd5536udc.c