removed spd_dump.c, it has nothing to do with flashing flash parts.
use standard product ID exit method for w49f002u move udelay stuff into its own file git-svn-id: svn://svn.coreboot.org/coreboot/trunk@1433 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
This commit is contained in:
@ -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