Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit f3ce4d5b authored by Sebastian Andrzej Siewior's avatar Sebastian Andrzej Siewior Committed by Felipe Balbi
Browse files

usb: musb: core: call dma_controller_destroy() in the err path



The cleanup in the error is missing the dma controller. The structure is
allocated at runtime and ux500 allocates even a little more than just
this struct. So cleanup!

Signed-off-by: default avatarSebastian Andrzej Siewior <bigeasy@linutronix.de>
Signed-off-by: default avatarFelipe Balbi <balbi@ti.com>
parent 6904b845
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -1933,6 +1933,8 @@ musb_init_controller(struct device *dev, int nIrq, void __iomem *ctrl)
	musb_gadget_cleanup(musb);

fail3:
	if (musb->dma_controller)
		dma_controller_destroy(musb->dma_controller);
	pm_runtime_put_sync(musb->controller);

fail2: