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

Commit c21f7a52 authored by Milton Miller's avatar Milton Miller Committed by Benjamin Herrenschmidt
Browse files

hvc_console: Call free_irq() only if request_irq() was successful



Only call free_irq if we marked the request_irq has having succeeded
instead of whenever the the sub-driver identified the interrupt to use.

Signed-off-by: default avatarMilton Miller <miltonm@bga.com>
Signed-off-by: default avatarBenjamin Herrenschmidt <benh@kernel.crashing.org>
parent 9fef3d2d
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -37,7 +37,7 @@ int notifier_add_irq(struct hvc_struct *hp, int irq)

void notifier_del_irq(struct hvc_struct *hp, int irq)
{
	if (!irq)
	if (!hp->irq_requested)
		return;
	free_irq(irq, hp);
	hp->irq_requested = 0;