aboutsummaryrefslogtreecommitdiffstats
path: root/arch/x86/xen
diff options
context:
space:
mode:
authorFeng Tang <feng.tang@intel.com>2009-09-09 22:48:56 -0400
committerThomas Gleixner <tglx@linutronix.de>2009-09-16 08:34:50 -0400
commit7bd867dfb4e0357e06a3211ab2bd0e714110def3 (patch)
treefb66f4944f655ba594a7ae98f640e2310a389559 /arch/x86/xen
parent54e2603f1a85b9725aa13518d69148b6e7061aa9 (diff)
x86: Move get/set_wallclock to x86_platform_ops
get/set_wallclock() have already a set of platform dependent implementations (default, EFI, paravirt). MRST will add another variant. Moving them to platform ops simplifies the existing code and minimizes the effort to integrate new variants. Signed-off-by: Feng Tang <feng.tang@intel.com> LKML-Reference: <new-submission> Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Diffstat (limited to 'arch/x86/xen')
-rw-r--r--arch/x86/xen/enlighten.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/x86/xen/enlighten.c b/arch/x86/xen/enlighten.c
index ee8cac77c8a4..b5bf8b9119a3 100644
--- a/arch/x86/xen/enlighten.c
+++ b/arch/x86/xen/enlighten.c
@@ -842,8 +842,6 @@ static const struct pv_init_ops xen_init_ops __initdata = {
842}; 842};
843 843
844static const struct pv_time_ops xen_time_ops __initdata = { 844static const struct pv_time_ops xen_time_ops __initdata = {
845 .set_wallclock = xen_set_wallclock,
846 .get_wallclock = xen_get_wallclock,
847 .sched_clock = xen_sched_clock, 845 .sched_clock = xen_sched_clock,
848}; 846};
849 847
@@ -980,6 +978,8 @@ asmlinkage void __init xen_start_kernel(void)
980 x86_cpuinit.setup_percpu_clockev = x86_init_noop; 978 x86_cpuinit.setup_percpu_clockev = x86_init_noop;
981 979
982 x86_platform.calibrate_tsc = xen_tsc_khz; 980 x86_platform.calibrate_tsc = xen_tsc_khz;
981 x86_platform.get_wallclock = xen_get_wallclock;
982 x86_platform.set_wallclock = xen_set_wallclock;
983 983
984#ifdef CONFIG_X86_64 984#ifdef CONFIG_X86_64
985 /* 985 /*