diff options
Diffstat (limited to 'src/cpu/amd/sc520/sc520.c')
-rw-r--r-- | src/cpu/amd/sc520/sc520.c | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/src/cpu/amd/sc520/sc520.c b/src/cpu/amd/sc520/sc520.c index 7776e82cc8..8a0334bbb3 100644 --- a/src/cpu/amd/sc520/sc520.c +++ b/src/cpu/amd/sc520/sc520.c @@ -10,6 +10,19 @@ #include <bitops.h> #include "chip.h" + +/* hack for now */ +void sc520_udelay(int microseconds) { + volatile int x; + for(x = 0; x < 1000; x++) + ; +} + +/* looks like we define this now */ +void +udelay(int microseconds) { + sc520_udelay(microseconds); +} /* * set up basic things ... PAR should NOT go here, as it might change with the mainboard. */ |