]> git.neil.brown.name Git - history.git/commitdiff
[PATCH] jiffies include fix
authorJohn Stultz <johnstul@us.ibm.com>
Thu, 3 Jul 2003 09:39:18 +0000 (02:39 -0700)
committerGreg Kroah-Hartman <greg@kroah.com>
Thu, 3 Jul 2003 09:39:18 +0000 (02:39 -0700)
This patch fixes a bad declaration of jiffies in timer_tsc.c and
timer_cyclone.c, replacing it with the proper usage of jiffies.h.
Caught by gregkh.

arch/i386/kernel/timers/timer_cyclone.c
arch/i386/kernel/timers/timer_tsc.c

index 0d2c2baf2a647790cf547736e2afb568ba209fef..ecf003393ac4c0f882b1b554bfffa10e939aecc7 100644 (file)
@@ -11,6 +11,7 @@
 #include <linux/timex.h>
 #include <linux/errno.h>
 #include <linux/string.h>
+#include <linux/jiffies.h>
 
 #include <asm/timer.h>
 #include <asm/io.h>
@@ -18,7 +19,6 @@
 #include <asm/fixmap.h>
 
 extern spinlock_t i8253_lock;
-extern unsigned long jiffies;
 extern unsigned long calibrate_tsc(void);
 
 /* Number of usecs that the last interrupt was delayed */
index 02de71f68d9e732b131d91d70ff9db29e6248080..09e1ce4841830408bc8b01e030212d5604fcc077 100644 (file)
@@ -9,6 +9,7 @@
 #include <linux/errno.h>
 #include <linux/cpufreq.h>
 #include <linux/string.h>
+#include <linux/jiffies.h>
 
 #include <asm/timer.h>
 #include <asm/io.h>
@@ -21,7 +22,6 @@
 int tsc_disable __initdata = 0;
 
 extern spinlock_t i8253_lock;
-extern unsigned long jiffies;
 
 static int use_tsc;
 /* Number of usecs that the last interrupt was delayed */