[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <1361547870-32638-1-git-send-email-daniel.lezcano@linaro.org>
Date: Fri, 22 Feb 2013 16:44:30 +0100
From: Daniel Lezcano <daniel.lezcano@...aro.org>
To: john.stultz@...aro.org, tglx@...utronix.de
Cc: linux-kernel@...r.kernel.org, linaro-kernel@...ts.linaro.org,
patches@...aro.org, linus.walleij@...ricsson.com
Subject: [PATCH] clocksource : nomadik-mtu : fix missing irq initialization
This patch fix the clock device irq field which is not initialized.
Signed-off-by: Daniel Lezcano <daniel.lezcano@...aro.org>
---
drivers/clocksource/nomadik-mtu.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/drivers/clocksource/nomadik-mtu.c b/drivers/clocksource/nomadik-mtu.c
index 8914c3c..7cbcaa0 100644
--- a/drivers/clocksource/nomadik-mtu.c
+++ b/drivers/clocksource/nomadik-mtu.c
@@ -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);
}
--
1.7.9.5
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists