diff options
author | Ralf Baechle <ralf@linux-mips.org> | 2005-04-13 13:37:32 +0000 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2005-10-29 19:31:05 +0100 |
commit | f03da6e28ea2d20f1a8451869fd1c9ea9935022b (patch) | |
tree | 09a2e8041c2d4e1dcf9d35990caef9677db12218 /include/asm-mips/delay.h | |
parent | 589391a0fe229573439994b3be2cc9377722cf3d (diff) | |
download | talos-obmc-linux-f03da6e28ea2d20f1a8451869fd1c9ea9935022b.tar.gz talos-obmc-linux-f03da6e28ea2d20f1a8451869fd1c9ea9935022b.zip |
Fix BogoMIPS display on UP and some minor cosmetical things.
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Diffstat (limited to 'include/asm-mips/delay.h')
-rw-r--r-- | include/asm-mips/delay.h | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/include/asm-mips/delay.h b/include/asm-mips/delay.h index a606dbee0412..e906382576e6 100644 --- a/include/asm-mips/delay.h +++ b/include/asm-mips/delay.h @@ -15,8 +15,6 @@ #include <asm/compiler.h> -extern unsigned long loops_per_jiffy; - static inline void __delay(unsigned long loops) { if (sizeof(long) == 4) @@ -82,11 +80,7 @@ static inline void __udelay(unsigned long usecs, unsigned long lpj) __delay(usecs); } -#ifdef CONFIG_SMP #define __udelay_val cpu_data[smp_processor_id()].udelay_val -#else -#define __udelay_val loops_per_jiffy -#endif #define udelay(usecs) __udelay((usecs),__udelay_val) |