consolidate more jedec standard code

git-svn-id: svn://svn.coreboot.org/coreboot/trunk@1457 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
This commit is contained in:
Li-Ta Lo
2004-03-20 16:46:10 +00:00
parent 6a1a1102ea
commit fbf43ac5a6
27 changed files with 762 additions and 695 deletions

View File

@@ -7,8 +7,7 @@ unsigned long micro = 1;
void myusec_delay(int time)
{
volatile unsigned long i;
for (i = 0; i < time * micro; i++)
;
for (i = 0; i < time * micro; i++);
}
void myusec_calibrate_delay()
@@ -23,10 +22,10 @@ void myusec_calibrate_delay()
gettimeofday(&start, 0);
myusec_delay(count);
gettimeofday(&end, 0);
timeusec = 1000000 * (end.tv_sec - start.tv_sec ) +
(end.tv_usec - start.tv_usec);
timeusec = 1000000 * (end.tv_sec - start.tv_sec) +
(end.tv_usec - start.tv_usec);
count *= 2;
if (timeusec < 1000000/4)
if (timeusec < 1000000 / 4)
continue;
ok = 1;
}
@@ -34,5 +33,5 @@ void myusec_calibrate_delay()
// compute one microsecond. That will be count / time
micro = count / timeusec;
fprintf(stderr, "%ldM loops per second\n", (unsigned long)micro);
fprintf(stderr, "%ldM loops per second\n", (unsigned long) micro);
}