From: Graeme Russ Date: Sun, 23 Aug 2009 02:59:47 +0000 (+1000) Subject: i386: Fix regression introduced by commit 8c63d47651f7 X-Git-Tag: v2010.09-rc1~28^2~7^2~42^2~184 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=c214eaf35c037f752671a53a9988a05899767d8d;p=u-boot i386: Fix regression introduced by commit 8c63d47651f7 A local variable was deleted that should not have been Signed-off-by: Graeme Russ --- diff --git a/lib_i386/pcat_timer.c b/lib_i386/pcat_timer.c index e282f649ac..c351b23b63 100644 --- a/lib_i386/pcat_timer.c +++ b/lib_i386/pcat_timer.c @@ -25,10 +25,13 @@ #include #include #include +#include #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; }