mirror of
https://github.com/torvalds/linux.git
synced 2024-11-01 09:41:44 +00:00
7bd867dfb4
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>
11 lines
173 B
C
11 lines
173 B
C
#ifndef _ASM_X86_TIME_H
|
|
#define _ASM_X86_TIME_H
|
|
|
|
extern void hpet_time_init(void);
|
|
|
|
#include <asm/mc146818rtc.h>
|
|
|
|
extern void time_init(void);
|
|
|
|
#endif /* _ASM_X86_TIME_H */
|