summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorThomas Weißschuh <thomas.weissschuh@linutronix.de>2026-07-07 08:07:15 +0200
committerThomas Gleixner <tglx@kernel.org>2026-07-07 23:48:08 +0200
commit79bd39c58f2c6fdbc5fb6300d309606f3cb84ab8 (patch)
tree361b4543f5005a9c47d6ca583a0f6bd0d144c53e /include
parent6e435911394b05c91b92d4c332c455ec569e22fb (diff)
timekeeping: Move the vDSO update declarations into a private header
All architectures are now fully using the generic vDSO infrastructure. They don't need these declarations anymore to implement the functions in architecture-specific code. Move them to the private header. Signed-off-by: Thomas Weißschuh <thomas.weissschuh@linutronix.de> Signed-off-by: Thomas Gleixner <tglx@kernel.org> Link: https://patch.msgid.link/20260707-timekeeping-header-cleanup-v1-2-e85ad96409a9@linutronix.de
Diffstat (limited to 'include')
-rw-r--r--include/linux/timekeeper_internal.h19
1 files changed, 0 insertions, 19 deletions
diff --git a/include/linux/timekeeper_internal.h b/include/linux/timekeeper_internal.h
index 58c83d6e65b3..264db7c9c071 100644
--- a/include/linux/timekeeper_internal.h
+++ b/include/linux/timekeeper_internal.h
@@ -190,23 +190,4 @@ struct timekeeper {
s32 tai_offset;
};
-#ifdef CONFIG_GENERIC_GETTIMEOFDAY
-
-extern void update_vsyscall(struct timekeeper *tk);
-extern void update_vsyscall_tz(void);
-extern void vdso_time_update_aux(struct timekeeper *tk);
-
-#else
-
-static inline void update_vsyscall(struct timekeeper *tk)
-{
-}
-static inline void update_vsyscall_tz(void)
-{
-}
-static inline void vdso_time_update_aux(struct timekeeper *tk)
-{
-}
-#endif
-
#endif /* _LINUX_TIMEKEEPER_INTERNAL_H */