diff options
author | Stefan Reinauer <stepan@coresystems.de> | 2010-04-13 10:04:35 +0000 |
---|---|---|
committer | Stefan Reinauer <stepan@openbios.org> | 2010-04-13 10:04:35 +0000 |
commit | ea7f5a253b5e7b954a207349d61ca24a145765a3 (patch) | |
tree | 0675e6deddb745c5957cf25fc397489f1c866376 /src/cpu/amd/sc520/sc520.c | |
parent | f17ca16624140b0a2509fc37b084616b7857089e (diff) |
use the standard udelay on sc520.
Acked-by: Stefan Reinauer <stepan@coresystems.de>
Signed-off-by: Stefan Reinauer <stepan@coresystems.de>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@5418 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'src/cpu/amd/sc520/sc520.c')
-rw-r--r-- | src/cpu/amd/sc520/sc520.c | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/src/cpu/amd/sc520/sc520.c b/src/cpu/amd/sc520/sc520.c index 07991825cd..e867fae3d7 100644 --- a/src/cpu/amd/sc520/sc520.c +++ b/src/cpu/amd/sc520/sc520.c @@ -15,19 +15,6 @@ #include <delay.h> #include "chip.h" - -/* hack for now */ -static void sc520_udelay(int microseconds) { - volatile int x; - for(x = 0; x < 1000; x++) - ; -} - -/* looks like we define this now */ -void -udelay(unsigned microseconds) { - sc520_udelay(microseconds); -} /* * set up basic things ... * PAR should NOT go here, as it might change with the mainboard. |