mirror of
https://github.com/team-infusion-developers/android_kernel_samsung_msm8976.git
synced 2024-11-01 02:21:16 +00:00
87ace39b71
In order to change the locking rules, we need to provide the timespec and tai values rather then having the ntp logic acquire these values itself. Cc: Thomas Gleixner <tglx@linutronix.de> Cc: Richard Cochran <richardcochran@gmail.com> Cc: Prarit Bhargava <prarit@redhat.com> Signed-off-by: John Stultz <john.stultz@linaro.org>
12 lines
495 B
C
12 lines
495 B
C
#ifndef _LINUX_NTP_INTERNAL_H
|
|
#define _LINUX_NTP_INTERNAL_H
|
|
|
|
extern void ntp_init(void);
|
|
extern void ntp_clear(void);
|
|
/* Returns how long ticks are at present, in ns / 2^NTP_SCALE_SHIFT. */
|
|
extern u64 ntp_tick_length(void);
|
|
extern int second_overflow(unsigned long secs);
|
|
extern int ntp_validate_timex(struct timex *);
|
|
extern int __do_adjtimex(struct timex *, struct timespec *, s32 *);
|
|
extern void __hardpps(const struct timespec *, const struct timespec *);
|
|
#endif /* _LINUX_NTP_INTERNAL_H */
|