diff options
Diffstat (limited to 'util/flash_and_burn/udelay.c')
-rw-r--r-- | util/flash_and_burn/udelay.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/util/flash_and_burn/udelay.c b/util/flash_and_burn/udelay.c index 9674bbefd1..a6597e50e8 100644 --- a/util/flash_and_burn/udelay.c +++ b/util/flash_and_burn/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); - - } |