diff options
author | Ollie Lho <ollie@sis.com.tw> | 2004-03-18 19:40:07 +0000 |
---|---|---|
committer | Ollie Lho <ollie@sis.com.tw> | 2004-03-18 19:40:07 +0000 |
commit | 55bd16c263222494321766810039aa9e7bc0ddb8 (patch) | |
tree | 17ed4f4c1e385338b6470fa3d2974668d6b8b5fc /udelay.c | |
parent | 29dbba09011d9487e2d0573c3f2bd32010fedc48 (diff) | |
download | flashrom-55bd16c263222494321766810039aa9e7bc0ddb8.zip flashrom-55bd16c263222494321766810039aa9e7bc0ddb8.tar.gz |
Fixed 32bit vs 64bit long int arithematics
Corresponding to flashrom svn r8 and coreboot v2 svn r1434.
Diffstat (limited to 'udelay.c')
-rw-r--r-- | udelay.c | 3 |
1 files changed, 0 insertions, 3 deletions
@@ -17,17 +17,14 @@ void myusec_calibrate_delay() unsigned long timeusec; struct timeval start, end; int ok = 0; - void myusec_delay(int time); printf("Setting up microsecond timing loop\n"); while (!ok) { - //fprintf(stderr, "Try %d\n", count); gettimeofday(&start, 0); myusec_delay(count); gettimeofday(&end, 0); timeusec = 1000000 * (end.tv_sec - start.tv_sec ) + (end.tv_usec - start.tv_usec); - //fprintf(stderr, "timeusec is %d\n", timeusec); count *= 2; if (timeusec < 1000000/4) continue; |