From: john stultz 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. arch/i386/kernel/timers/timer_cyclone.c | 2 +- arch/i386/kernel/timers/timer_tsc.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff -puN arch/i386/kernel/timers/timer_cyclone.c~jiffies-include-fixes arch/i386/kernel/timers/timer_cyclone.c --- 25/arch/i386/kernel/timers/timer_cyclone.c~jiffies-include-fixes 2003-07-02 18:13:34.000000000 -0700 +++ 25-akpm/arch/i386/kernel/timers/timer_cyclone.c 2003-07-02 18:13:34.000000000 -0700 @@ -11,6 +11,7 @@ #include #include #include +#include #include #include @@ -18,7 +19,6 @@ #include extern spinlock_t i8253_lock; -extern unsigned long jiffies; extern unsigned long calibrate_tsc(void); /* Number of usecs that the last interrupt was delayed */ diff -puN arch/i386/kernel/timers/timer_tsc.c~jiffies-include-fixes arch/i386/kernel/timers/timer_tsc.c --- 25/arch/i386/kernel/timers/timer_tsc.c~jiffies-include-fixes 2003-07-02 18:13:34.000000000 -0700 +++ 25-akpm/arch/i386/kernel/timers/timer_tsc.c 2003-07-02 18:13:34.000000000 -0700 @@ -9,6 +9,7 @@ #include #include #include +#include #include #include @@ -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 */ _