summaryrefslogtreecommitdiffstats
path: root/include/linux/time.h
diff options
context:
space:
mode:
authorArnd Bergmann <arnd@arndb.de>2020-09-24 12:30:50 +0200
committerArnd Bergmann <arnd@arndb.de>2020-10-30 21:57:04 +0100
commit77f6c0b87479c4578ac0798fc249637092ac45a3 (patch)
tree0b80ae0e97c2a18587b6c6c554077ea0dbd1f412 /include/linux/time.h
parent0d9dc7459a82f0ddd7907cd9fc0f6cc032c058da (diff)
downloadlinux-stable-77f6c0b87479c4578ac0798fc249637092ac45a3.tar.gz
linux-stable-77f6c0b87479c4578ac0798fc249637092ac45a3.tar.bz2
linux-stable-77f6c0b87479c4578ac0798fc249637092ac45a3.zip
timekeeping: remove arch_gettimeoffset
With Arm EBSA110 gone, nothing uses it any more, so the corresponding code and the Kconfig option can be removed. Acked-by: Thomas Gleixner <tglx@linutronix.de> Reviewed-by: Linus Walleij <linus.walleij@linaro.org> Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Diffstat (limited to 'include/linux/time.h')
-rw-r--r--include/linux/time.h13
1 files changed, 0 insertions, 13 deletions
diff --git a/include/linux/time.h b/include/linux/time.h
index b142cb5f5a53..16cf4522d6f3 100644
--- a/include/linux/time.h
+++ b/include/linux/time.h
@@ -21,19 +21,6 @@ extern time64_t mktime64(const unsigned int year, const unsigned int mon,
const unsigned int day, const unsigned int hour,
const unsigned int min, const unsigned int sec);
-/* Some architectures do not supply their own clocksource.
- * This is mainly the case in architectures that get their
- * inter-tick times by reading the counter on their interval
- * timer. Since these timers wrap every tick, they're not really
- * useful as clocksources. Wrapping them to act like one is possible
- * but not very efficient. So we provide a callout these arches
- * can implement for use with the jiffies clocksource to provide
- * finer then tick granular time.
- */
-#ifdef CONFIG_ARCH_USES_GETTIMEOFFSET
-extern u32 (*arch_gettimeoffset)(void);
-#endif
-
#ifdef CONFIG_POSIX_TIMERS
extern void clear_itimer(void);
#else