aboutsummaryrefslogtreecommitdiff
path: root/arch/parisc/kernel/smp.c
diff options
context:
space:
mode:
authorKyle McMartin <kyle@mako.i.cabal.ca>2007-02-26 21:24:56 -0500
committerKyle McMartin <kyle@mako.i.cabal.ca>2007-02-26 21:24:56 -0500
commitb2a8289a611af409e5621df27227dc3f55ba358b (patch)
tree34452ae94e0a84ce01b1137e92808ce563b48db6 /arch/parisc/kernel/smp.c
parent87c8174727c95ab43f5bd2164e78c665c6945e67 (diff)
[PARISC] time: clocksource lost update_callback
So move the code to be called by smp_cpus_done, which is after we've figured out if there's more than one cpu actually present. Signed-off-by: Kyle McMartin <kyle@parisc-linux.org>
Diffstat (limited to 'arch/parisc/kernel/smp.c')
-rw-r--r--arch/parisc/kernel/smp.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/arch/parisc/kernel/smp.c b/arch/parisc/kernel/smp.c
index 6ba9257fdb7f..bb6e6a38e911 100644
--- a/arch/parisc/kernel/smp.c
+++ b/arch/parisc/kernel/smp.c
@@ -567,6 +567,10 @@ void __init smp_prepare_cpus(unsigned int max_cpus)
void smp_cpus_done(unsigned int cpu_max)
{
+ extern int update_cr16_clocksource(void);
+
+ update_cr16_clocksource();
+
return;
}