From 90ace40706cfb53838fcd559464dc4b828baadbe Mon Sep 17 00:00:00 2001 From: stuge Date: Sun, 7 Sep 2008 03:14:27 +0000 Subject: Original v2 revision: 3569 flashrom: Debug print actual time base calculated by myusec_calibrate_delay() Signed-off-by: Peter Stuge Acked-by: Peter Stuge git-svn-id: https://code.coreboot.org/svn/flashrom/trunk@314 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1 --- udelay.c | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/udelay.c b/udelay.c index f7257c9..e4500ae 100644 --- a/udelay.c +++ b/udelay.c @@ -55,6 +55,12 @@ void myusec_calibrate_delay() // compute one microsecond. That will be count / time micro = count / timeusec; - printf_debug("%ldM loops per second. ", (unsigned long)micro); + gettimeofday(&start, 0); + myusec_delay(100); + gettimeofday(&end, 0); + timeusec = 1000000 * (end.tv_sec - start.tv_sec) + + (end.tv_usec - start.tv_usec); + printf_debug("%ldM loops per second, 100 myus = %ld us. ", + (unsigned long)micro, timeusec); printf("OK.\n"); } -- cgit v1.2.1