From 6ff10de374cc68ff2024247793176dc8a1b317ea Mon Sep 17 00:00:00 2001 From: Ingo Molnar Date: Tue, 24 Jun 2008 01:19:49 +0200 Subject: [PATCH] x86: fix "x86: use cpu_khz for loops_per_jiffy calculation" MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit fix: arch/x86/kernel/tsc_32.c: In function ‘tsc_init': arch/x86/kernel/tsc_32.c:421: error: ‘lpj_tsc' undeclared (first use in this function) arch/x86/kernel/tsc_32.c:421: error: (Each undeclared identifier is reported only once arch/x86/kernel/tsc_32.c:421: error: for each function it appears in.) Signed-off-by: Ingo Molnar --- arch/x86/kernel/tsc_32.c | 1 + 1 file changed, 1 insertion(+) diff --git a/arch/x86/kernel/tsc_32.c b/arch/x86/kernel/tsc_32.c index be729035b30..0af49fb533e 100644 --- a/arch/x86/kernel/tsc_32.c +++ b/arch/x86/kernel/tsc_32.c @@ -1,6 +1,7 @@ #include #include #include +#include #include #include #include -- 2.11.4.GIT