summaryrefslogtreecommitdiff
path: root/arch/arm/mach-shmobile/timer.c
diff options
context:
space:
mode:
authorMagnus Damm <damm@opensource.se>2012-03-06 08:36:14 (GMT)
committerRafael J. Wysocki <rjw@sisk.pl>2012-03-12 21:19:44 (GMT)
commit08ad42fb7702ee2968b5b837e245ca8fd2175223 (patch)
treea9ff0a145d9ea8865df3ad07421f3f7f580b6cf8 /arch/arm/mach-shmobile/timer.c
parente3b0161b3c846e7ce994bb5d1671e1ed5c871915 (diff)
downloadlinux-fsl-qoriq-08ad42fb7702ee2968b5b837e245ca8fd2175223.tar.xz
ARM: mach-shmobile: add shmobile_earlytimer_init()
Add shmobile_earlytimer_init() that can be used to enable the earlytimer probing from the SoC code. Signed-off-by: Magnus Damm <damm@opensource.se> Signed-off-by: Rafael J. Wysocki <rjw@sisk.pl>
Diffstat (limited to 'arch/arm/mach-shmobile/timer.c')
-rw-r--r--arch/arm/mach-shmobile/timer.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/arch/arm/mach-shmobile/timer.c b/arch/arm/mach-shmobile/timer.c
index 895794b..e510643 100644
--- a/arch/arm/mach-shmobile/timer.c
+++ b/arch/arm/mach-shmobile/timer.c
@@ -36,11 +36,16 @@ static void __init shmobile_late_time_init(void)
early_platform_driver_probe("earlytimer", 2, 0);
}
-static void __init shmobile_timer_init(void)
+void __init shmobile_earlytimer_init(void)
{
late_time_init = shmobile_late_time_init;
}
+static void __init shmobile_timer_init(void)
+{
+ shmobile_earlytimer_init();
+}
+
struct sys_timer shmobile_timer = {
.init = shmobile_timer_init,
};