public inbox for linux-arm-kernel@lists.infradead.org
 help / color / mirror / Atom feed
* [PATCH] arm: sched_clock: Enable HAVE_SCHED_CLOCK support without init_sched_clock
@ 2011-09-15  7:35 Kyungmin Park
  2011-09-15  8:20 ` Russell King - ARM Linux
  0 siblings, 1 reply; 3+ messages in thread
From: Kyungmin Park @ 2011-09-15  7:35 UTC (permalink / raw)
  To: linux-arm-kernel

From: Kyungmin Park <kyungmin.park@samsung.com>

On Samsung Exynos4 series, EVT0 chip uses the s5p_timer with HAVE_SCHED_CLOCK and remains use the MCT timer without init_sched_clock.

The similar combination will be happend with other SOCs. some board use HAVE_SCHED_CLOCK or others are not.

To co-exist the these boards. check the sched_clock_update_fn when sched_clock_postinit is called and return if not defined.

Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
---
diff --git a/arch/arm/kernel/sched_clock.c b/arch/arm/kernel/sched_clock.c
index 9a46370..12c6b6b 100644
--- a/arch/arm/kernel/sched_clock.c
+++ b/arch/arm/kernel/sched_clock.c
@@ -70,5 +70,8 @@ void __init init_sched_clock(struct clock_data *cd, void (*update)(void),
 
 void __init sched_clock_postinit(void)
 {
+	/* If init_sched_clock is not called, just return */
+	if (!sched_clock_update_fn)
+		return;
 	sched_clock_poll(sched_clock_timer.data);
 }

^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2011-09-15  8:35 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-09-15  7:35 [PATCH] arm: sched_clock: Enable HAVE_SCHED_CLOCK support without init_sched_clock Kyungmin Park
2011-09-15  8:20 ` Russell King - ARM Linux
2011-09-15  8:35   ` Kyungmin Park

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox