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

Commit 00f4e13c authored by Daniel Lezcano's avatar Daniel Lezcano Committed by Thomas Gleixner
Browse files

clocksource : Nomadik-mtu : fix missing irq initialization



This patch fix the clock device irq field which is not initialized.

Signed-off-by: default avatarDaniel Lezcano <daniel.lezcano@linaro.org>
Cc: linaro-kernel@lists.linaro.org
Cc: patches@linaro.org
Cc: linus.walleij@stericsson.com
Cc: john.stultz@linaro.org
Link: http://lkml.kernel.org/r/1361547870-32638-1-git-send-email-daniel.lezcano@linaro.org


Signed-off-by: default avatarThomas Gleixner <tglx@linutronix.de>
parent e182bb38
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -226,5 +226,6 @@ void __init nmdk_timer_init(void __iomem *base, int irq)
	/* Timer 1 is used for events, register irq and clockevents */
	setup_irq(irq, &nmdk_timer_irq);
	nmdk_clkevt.cpumask = cpumask_of(0);
	nmdk_clkevt.irq = irq;
	clockevents_config_and_register(&nmdk_clkevt, rate, 2, 0xffffffffU);
}