1
0
mirror of https://review.coreboot.org/flashrom.git synced 2025-07-01 22:21:16 +02:00

Use standard product ID exit method for w49f002u

Corresponding to flashrom svn r7 and coreboot v2 svn r1433.
This commit is contained in:
Ollie Lho
2004-03-17 23:03:37 +00:00
parent cbbf125981
commit cec287936c
4 changed files with 38 additions and 89 deletions

View File

@ -7,7 +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++)
;
}
@ -38,6 +38,4 @@ void myusec_calibrate_delay()
micro = count / timeusec;
fprintf(stderr, "%ldM loops per second\n", (unsigned long)micro);
}