summaryrefslogtreecommitdiff
path: root/util/flash_and_burn/udelay.c
diff options
context:
space:
mode:
authorLi-Ta Lo <ollie@lanl.gov>2004-03-17 23:03:37 +0000
committerLi-Ta Lo <ollie@lanl.gov>2004-03-17 23:03:37 +0000
commit698f23db22cc71da488eb9bec001fda60cbf0b35 (patch)
treed21543d81b88cf048246688d96e337e031f4498a /util/flash_and_burn/udelay.c
parente74ff463c488acdc300a9486b4f1b749e841a30d (diff)
downloadcoreboot-698f23db22cc71da488eb9bec001fda60cbf0b35.tar.xz
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
Diffstat (limited to 'util/flash_and_burn/udelay.c')
-rw-r--r--util/flash_and_burn/udelay.c4
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);
-
-
}