aboutsummaryrefslogtreecommitdiffstats
path: root/arch/s390/kernel/time.c
diff options
context:
space:
mode:
authorHeiko Carstens <heiko.carstens@de.ibm.com>2007-02-05 15:18:53 -0500
committerMartin Schwidefsky <schwidefsky@de.ibm.com>2007-02-05 15:18:53 -0500
commit4d284cac76d0bfebc42d76b428c4e44d921200a9 (patch)
treee99d659aea9c747a3d5b4b4341f84a5cbead265b /arch/s390/kernel/time.c
parent162e006ef59266b9ebf34e3d15ca1f3d9ee956d7 (diff)
[S390] Avoid excessive inlining.
Signed-off-by: Heiko Carstens <heiko.carstens@de.ibm.com> Signed-off-by: Martin Schwidefsky <schwidefsky@de.ibm.com>
Diffstat (limited to 'arch/s390/kernel/time.c')
-rw-r--r--arch/s390/kernel/time.c4
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 */
169static inline void stop_hz_timer(void) 169static 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 */
213static inline void start_hz_timer(void) 213static void start_hz_timer(void)
214{ 214{
215 BUG_ON(!in_interrupt()); 215 BUG_ON(!in_interrupt());
216 216