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:
4
udelay.c
4
udelay.c
@ -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);
|
||||
|
||||
|
||||
}
|
||||
|
Reference in New Issue
Block a user