diff options
author | Thomas Gleixner <tglx@linutronix.de> | 2024-09-11 15:17:37 +0200 |
---|---|---|
committer | Thomas Gleixner <tglx@linutronix.de> | 2024-10-02 16:53:38 +0200 |
commit | a849a0273d0f73a252d14d31c5003a8059ea51fc (patch) | |
tree | 6622dc64e8536d022b9111db9abcaeb2ad086ad9 /include | |
parent | 9852d85ec9d492ebef56dc5f229416c925758edc (diff) |
ntp: Remove unused tick_nsec
tick_nsec is only updated in the NTP core, but there are no users.
Remove it.
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Anna-Maria Behnsen <anna-maria@linutronix.de>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Acked-by: John Stultz <jstultz@google.com>
Link: https://lore.kernel.org/all/20240911-devel-anna-maria-b4-timers-ptp-ntp-v1-1-2d52f4e13476@linutronix.de
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/timex.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/include/linux/timex.h b/include/linux/timex.h index 3871b06bd302..7f7a12fd8200 100644 --- a/include/linux/timex.h +++ b/include/linux/timex.h @@ -145,7 +145,6 @@ unsigned long random_get_entropy_fallback(void); * estimated error = NTP dispersion. */ extern unsigned long tick_usec; /* USER_HZ period (usec) */ -extern unsigned long tick_nsec; /* SHIFTED_HZ period (nsec) */ /* Required to safely shift negative values */ #define shift_right(x, s) ({ \ |