Author: jcrouse Date: 2008-08-29 01:12:02 +0200 (Fri, 29 Aug 2008) New Revision: 3551
Modified: trunk/payloads/libpayload/i386/timer.c Log: [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 <[EMAIL PROTECTED]> Acked-by: Jordan Crouse <[EMAIL PROTECTED]> Modified: trunk/payloads/libpayload/i386/timer.c =================================================================== --- trunk/payloads/libpayload/i386/timer.c 2008-08-28 23:11:29 UTC (rev 3550) +++ trunk/payloads/libpayload/i386/timer.c 2008-08-28 23:12:02 UTC (rev 3551) @@ -30,7 +30,7 @@ #include <libpayload.h> #include <arch/rdtsc.h> -unsigned int cpu_khz; +u32 cpu_khz; /** * Calculate the speed of the processor for use in delays. -- coreboot mailing list [email protected] http://www.coreboot.org/mailman/listinfo/coreboot

