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

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

usb: musb: musbhsdma: drop the controller check in dma_controller_destroy()



This check is hardly required and alas is wrong. 'c' might be NULL but
the chances are low that 'controller' after the container_of() becomes
NULL.

Since no other DMA implementation is doing that and musb-core does not
call it with a NULL pointer it can dropped.

Signed-off-by: default avatarSebastian Andrzej Siewior <bigeasy@linutronix.de>
Signed-off-by: default avatarFelipe Balbi <balbi@ti.com>
parent 260eba39
Loading
Loading
Loading
Loading
+0 −3
Original line number Diff line number Diff line
@@ -371,9 +371,6 @@ void dma_controller_destroy(struct dma_controller *c)
	struct musb_dma_controller *controller = container_of(c,
			struct musb_dma_controller, controller);

	if (!controller)
		return;

	if (controller->irq)
		free_irq(controller->irq, c);