diff options
Diffstat (limited to 'include/linux/time.h')
-rw-r--r-- | include/linux/time.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/include/linux/time.h b/include/linux/time.h index dfbc4e82e8ba..369b6e3b87d8 100644 --- a/include/linux/time.h +++ b/include/linux/time.h | |||
@@ -116,10 +116,15 @@ static inline bool timespec_valid_strict(const struct timespec *ts) | |||
116 | } | 116 | } |
117 | 117 | ||
118 | extern bool persistent_clock_exist; | 118 | extern bool persistent_clock_exist; |
119 | |||
120 | #ifdef CONFIG_HAS_PERSISTENT_CLOCK | ||
121 | #define has_persistent_clock() true | ||
122 | #else | ||
119 | static inline bool has_persistent_clock(void) | 123 | static inline bool has_persistent_clock(void) |
120 | { | 124 | { |
121 | return persistent_clock_exist; | 125 | return persistent_clock_exist; |
122 | } | 126 | } |
127 | #endif | ||
123 | 128 | ||
124 | extern void read_persistent_clock(struct timespec *ts); | 129 | extern void read_persistent_clock(struct timespec *ts); |
125 | extern void read_boot_clock(struct timespec *ts); | 130 | extern void read_boot_clock(struct timespec *ts); |