diff options
Diffstat (limited to 'include/asm-cris/arch-v32/delay.h')
-rw-r--r-- | include/asm-cris/arch-v32/delay.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/include/asm-cris/arch-v32/delay.h b/include/asm-cris/arch-v32/delay.h index b6e941e637de..e9fda03810a9 100644 --- a/include/asm-cris/arch-v32/delay.h +++ b/include/asm-cris/arch-v32/delay.h | |||
@@ -1,6 +1,16 @@ | |||
1 | #ifndef _ASM_CRIS_ARCH_DELAY_H | 1 | #ifndef _ASM_CRIS_ARCH_DELAY_H |
2 | #define _ASM_CRIS_ARCH_DELAY_H | 2 | #define _ASM_CRIS_ARCH_DELAY_H |
3 | 3 | ||
4 | extern void cris_delay10ns(u32 n10ns); | ||
5 | #define udelay(u) cris_delay10ns((u)*100) | ||
6 | #define ndelay(n) cris_delay10ns(((n)+9)/10) | ||
7 | |||
8 | /* | ||
9 | * Not used anymore for udelay or ndelay. Referenced by | ||
10 | * e.g. init/calibrate.c. All other references are likely bugs; | ||
11 | * should be replaced by mdelay, udelay or ndelay. | ||
12 | */ | ||
13 | |||
4 | static inline void | 14 | static inline void |
5 | __delay(int loops) | 15 | __delay(int loops) |
6 | { | 16 | { |