diff options
author | Graeme Russ <graeme.russ@gmail.com> | 2009-08-23 12:59:47 +1000 |
---|---|---|
committer | Wolfgang Denk <wd@denx.de> | 2009-09-04 21:50:18 +0200 |
commit | ea0c37798c3823fdd77edfffd27b20191f8ca1f0 (patch) | |
tree | a028f1863eca3713942286c97bcf13652858c9a3 /lib_i386 | |
parent | cfb3a736ffcff3e3753b902cad536f22fcf8961d (diff) |
i386: Fix regression introduced by commit 8c63d47651f7
A local variable was deleted that should not have been
Signed-off-by: Graeme Russ <graeme.russ@gmail.com>
Diffstat (limited to 'lib_i386')
-rw-r--r-- | lib_i386/pcat_timer.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/lib_i386/pcat_timer.c b/lib_i386/pcat_timer.c index e282f649acf..c351b23b633 100644 --- a/lib_i386/pcat_timer.c +++ b/lib_i386/pcat_timer.c @@ -25,10 +25,13 @@ #include <asm/io.h> #include <asm/i8254.h> #include <asm/ibmpc.h> +#include <asm/interrupt.h> #define TIMER0_VALUE 0x04aa /* 1kHz 1.9318MHz / 1000 */ #define TIMER2_VALUE 0x0a8e /* 440Hz */ +static int timer_init_done = 0; + int timer_init(void) { /* initialize timer 0 and 2 @@ -52,6 +55,8 @@ int timer_init(void) irq_install_handler (0, timer_isr, NULL); unmask_irq (0); + timer_init_done = 1; + return 0; } |