diff options
Diffstat (limited to 'arch/s390/kernel/time.c')
-rw-r--r-- | arch/s390/kernel/time.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/s390/kernel/time.c b/arch/s390/kernel/time.c index 39a72d3cb89a..3b91f27ab202 100644 --- a/arch/s390/kernel/time.c +++ b/arch/s390/kernel/time.c | |||
@@ -166,7 +166,7 @@ int sysctl_hz_timer = 1; | |||
166 | * Stop the HZ tick on the current CPU. | 166 | * Stop the HZ tick on the current CPU. |
167 | * Only cpu_idle may call this function. | 167 | * Only cpu_idle may call this function. |
168 | */ | 168 | */ |
169 | static inline void stop_hz_timer(void) | 169 | static void stop_hz_timer(void) |
170 | { | 170 | { |
171 | unsigned long flags; | 171 | unsigned long flags; |
172 | unsigned long seq, next; | 172 | unsigned long seq, next; |
@@ -210,7 +210,7 @@ static inline void stop_hz_timer(void) | |||
210 | * Start the HZ tick on the current CPU. | 210 | * Start the HZ tick on the current CPU. |
211 | * Only cpu_idle may call this function. | 211 | * Only cpu_idle may call this function. |
212 | */ | 212 | */ |
213 | static inline void start_hz_timer(void) | 213 | static void start_hz_timer(void) |
214 | { | 214 | { |
215 | BUG_ON(!in_interrupt()); | 215 | BUG_ON(!in_interrupt()); |
216 | 216 | ||