mirror of
https://review.coreboot.org/flashrom.git
synced 2025-07-02 06:23:18 +02:00
Coding style fixes
Corresponding to flashrom svn r97 and coreboot v2 svn r2577. Signed-off-by: Uwe Hermann <uwe@hermann-uwe.de> Acked-by: Uwe Hermann <uwe@hermann-uwe.de>
This commit is contained in:
4
udelay.c
4
udelay.c
@ -8,7 +8,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()
|
||||
@ -34,5 +34,5 @@ void myusec_calibrate_delay()
|
||||
// compute one microsecond. That will be count / time
|
||||
micro = count / timeusec;
|
||||
|
||||
printf_debug("%ldM loops per second\n", (unsigned long) micro);
|
||||
printf_debug("%ldM loops per second\n", (unsigned long)micro);
|
||||
}
|
||||
|
Reference in New Issue
Block a user