* [PATCH] clocksource/imx: Fix boot with non-DT systems
@ 2015-08-20 10:27 Guenter Roeck
2015-08-20 15:27 ` [tip:timers/urgent] " tip-bot for Guenter Roeck
0 siblings, 1 reply; 2+ messages in thread
From: Guenter Roeck @ 2015-08-20 10:27 UTC (permalink / raw)
To: Daniel Lezcano; +Cc: Thomas Gleixner, linux-kernel, Guenter Roeck, Shawn Guo
Commit 6dd747825b20 ("ARM: imx: move timer resources into a structure")
moved initialization parameters into a data structure, but neglected to set
the irq field in that data structure for non-DT boots. This causes the system
to hang if a non-DT boot is attempted.
Fixes: 6dd747825b20 ("ARM: imx: move timer resources into a structure")
Cc: Shawn Guo <shawn.guo@linaro.org>
Signed-off-by: Guenter Roeck <linux@roeck-us.net>
---
drivers/clocksource/timer-imx-gpt.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/drivers/clocksource/timer-imx-gpt.c b/drivers/clocksource/timer-imx-gpt.c
index 2d59038dec43..86c7eb66bdfb 100644
--- a/drivers/clocksource/timer-imx-gpt.c
+++ b/drivers/clocksource/timer-imx-gpt.c
@@ -462,6 +462,7 @@ void __init mxc_timer_init(unsigned long pbase, int irq, enum imx_gpt_type type)
BUG_ON(!imxtm->base);
imxtm->type = type;
+ imxtm->irq = irq;
_mxc_timer_init(imxtm);
}
--
2.1.4
^ permalink raw reply [flat|nested] 2+ messages in thread
* [tip:timers/urgent] clocksource/imx: Fix boot with non-DT systems
2015-08-20 10:27 [PATCH] clocksource/imx: Fix boot with non-DT systems Guenter Roeck
@ 2015-08-20 15:27 ` tip-bot for Guenter Roeck
0 siblings, 0 replies; 2+ messages in thread
From: tip-bot for Guenter Roeck @ 2015-08-20 15:27 UTC (permalink / raw)
To: linux-tip-commits
Cc: shawn.guo, linux-kernel, linux, daniel.lezcano, mingo, hpa, tglx
Commit-ID: be3b0f9babc0b29931b75f7048d81f966473ce13
Gitweb: http://git.kernel.org/tip/be3b0f9babc0b29931b75f7048d81f966473ce13
Author: Guenter Roeck <linux@roeck-us.net>
AuthorDate: Thu, 20 Aug 2015 03:27:21 -0700
Committer: Thomas Gleixner <tglx@linutronix.de>
CommitDate: Thu, 20 Aug 2015 17:22:56 +0200
clocksource/imx: Fix boot with non-DT systems
Commit 6dd747825b20 ("ARM: imx: move timer resources into a structure")
moved initialization parameters into a data structure, but neglected to set
the irq field in that data structure for non-DT boots. This causes the system
to hang if a non-DT boot is attempted.
Fixes: 6dd747825b20 ("ARM: imx: move timer resources into a structure")
Signed-off-by: Guenter Roeck <linux@roeck-us.net>
Cc: Shawn Guo <shawn.guo@linaro.org>
Cc: Daniel Lezcano <daniel.lezcano@linaro.org>
Link: http://lkml.kernel.org/r/1440066441-13930-1-git-send-email-linux@roeck-us.net
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
---
drivers/clocksource/timer-imx-gpt.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/drivers/clocksource/timer-imx-gpt.c b/drivers/clocksource/timer-imx-gpt.c
index 2d59038..86c7eb6 100644
--- a/drivers/clocksource/timer-imx-gpt.c
+++ b/drivers/clocksource/timer-imx-gpt.c
@@ -462,6 +462,7 @@ void __init mxc_timer_init(unsigned long pbase, int irq, enum imx_gpt_type type)
BUG_ON(!imxtm->base);
imxtm->type = type;
+ imxtm->irq = irq;
_mxc_timer_init(imxtm);
}
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2015-08-20 15:28 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-08-20 10:27 [PATCH] clocksource/imx: Fix boot with non-DT systems Guenter Roeck
2015-08-20 15:27 ` [tip:timers/urgent] " tip-bot for Guenter Roeck
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
Powered by JetHome