From 483926648ebc7b0ac937a6692dc2329113d65dd9 Mon Sep 17 00:00:00 2001 From: Jordan Crouse Date: Thu, 28 Aug 2008 23:12:02 +0000 Subject: [PATCH] [PATCH]: libpayload: change the type of the cpu_khz variable This makes it match the extern declaration in libc/time.c - and doxygen can find make the connection. Trivial. Signed-off-by: Jordan Crouse Acked-by: Jordan Crouse git-svn-id: svn://svn.coreboot.org/coreboot/trunk@3551 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1 --- payloads/libpayload/i386/timer.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/payloads/libpayload/i386/timer.c b/payloads/libpayload/i386/timer.c index ba3c31ae4..260656cfe 100644 --- a/payloads/libpayload/i386/timer.c +++ b/payloads/libpayload/i386/timer.c @@ -30,7 +30,7 @@ #include #include -unsigned int cpu_khz; +u32 cpu_khz; /** * Calculate the speed of the processor for use in delays. -- 2.25.1