summaryrefslogtreecommitdiffstats
path: root/arch/x86/kernel/time_32.c
diff options
context:
space:
mode:
authorYinghai Lu2008-07-20 03:02:26 +0200
committerIngo Molnar2008-07-20 09:25:52 +0200
commit63b5d7af2556a7de6bf72c5dd0b85a32fb4c3767 (patch)
tree83465d3c04f62c241d08cc7663328374e9edea4d /arch/x86/kernel/time_32.c
parentx86: extend and use x86_quirks to clean up NUMAQ code (diff)
downloadkernel-qcow2-linux-63b5d7af2556a7de6bf72c5dd0b85a32fb4c3767.tar.gz
kernel-qcow2-linux-63b5d7af2556a7de6bf72c5dd0b85a32fb4c3767.tar.xz
kernel-qcow2-linux-63b5d7af2556a7de6bf72c5dd0b85a32fb4c3767.zip
x86: add ->pre_time_init to x86_quirks
so NUMAQ can use that to call numaq_pre_time_init() This allows us to remove a NUMAQ special from arch/x86/kernel/setup.c. (and paves the way to remove the NUMAQ subarch) Signed-off-by: Yinghai Lu <yhlu.kernel@gmail.com> Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'arch/x86/kernel/time_32.c')
-rw-r--r--arch/x86/kernel/time_32.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/x86/kernel/time_32.c b/arch/x86/kernel/time_32.c
index 059ca6ee59b4..ffe3c664afc0 100644
--- a/arch/x86/kernel/time_32.c
+++ b/arch/x86/kernel/time_32.c
@@ -129,6 +129,7 @@ void __init hpet_time_init(void)
*/
void __init time_init(void)
{
+ pre_time_init_hook();
tsc_init();
late_time_init = choose_time_init();
}