1
0
mirror of https://review.coreboot.org/flashrom.git synced 2025-04-27 15:12:36 +02:00

Debug print actual time base calculated by myusec_calibrate_delay()

Corresponding to flashrom svn r314 and coreboot v2 svn r3569.

Signed-off-by: Peter Stuge <peter@stuge.se>
Acked-by: Peter Stuge <peter@stuge.se>
This commit is contained in:
Peter Stuge 2008-09-07 03:14:27 +00:00
parent 483b8f0c0d
commit 80d667b518

View File

@ -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");
}