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

Commit f43ab901 authored by Nelson Castillo's avatar Nelson Castillo Committed by Samuel Ortiz
Browse files

mfd: pcf50633: fix unsafe disable_irq()



Without this change Openmoko Freerunner (GTA02) bootstrap will deadlock.
As pointed out in other patches this issue is in the wild since the merge
of:

: commit 3aa551c9
: Author: Thomas Gleixner <tglx@linutronix.de>
: Date:   Mon Mar 23 18:28:15 2009 +0100
:
:    genirq: add threaded interrupt handler support
:
:    Add support for threaded interrupt handlers

Signed-off-by: default avatarNelson Castillo <arhuaco@freaks-unidos.net>
Cc: Ingo Molnar <mingo@elte.hu>
Cc: <balajirrao@openmoko.org>
Cc: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarSamuel Ortiz <sameo@linux.intel.com>
parent b126d113
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -443,7 +443,7 @@ static irqreturn_t pcf50633_irq(int irq, void *data)
	dev_dbg(pcf->dev, "pcf50633_irq\n");

	get_device(pcf->dev);
	disable_irq(pcf->irq);
	disable_irq_nosync(pcf->irq);
	schedule_work(&pcf->irq_work);

	return IRQ_HANDLED;