 f15cbe6f1a
			
		
	
	
	f15cbe6f1a
	
	
	
		
			
			This follows the sparc changes a439fe51a1.
Most of the moving about was done with Sam's directions at:
http://marc.info/?l=linux-sh&m=121724823706062&w=2
with subsequent hacking and fixups entirely my fault.
Signed-off-by: Sam Ravnborg <sam@ravnborg.org>
Signed-off-by: Paul Mundt <lethal@linux-sh.org>
		
	
			
		
			
				
	
	
		
			26 lines
		
	
	
	
		
			689 B
			
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			26 lines
		
	
	
	
		
			689 B
			
		
	
	
	
		
			C
		
	
	
	
	
	
| #ifndef __ASM_SH_DELAY_H
 | |
| #define __ASM_SH_DELAY_H
 | |
| 
 | |
| /*
 | |
|  * Copyright (C) 1993 Linus Torvalds
 | |
|  *
 | |
|  * Delay routines calling functions in arch/sh/lib/delay.c
 | |
|  */
 | |
| 
 | |
| extern void __bad_udelay(void);
 | |
| extern void __bad_ndelay(void);
 | |
| 
 | |
| extern void __udelay(unsigned long usecs);
 | |
| extern void __ndelay(unsigned long nsecs);
 | |
| extern void __const_udelay(unsigned long xloops);
 | |
| extern void __delay(unsigned long loops);
 | |
| 
 | |
| #define udelay(n) (__builtin_constant_p(n) ? \
 | |
| 	((n) > 20000 ? __bad_udelay() : __const_udelay((n) * 0x10c6ul)) : \
 | |
| 	__udelay(n))
 | |
| 
 | |
| #define ndelay(n) (__builtin_constant_p(n) ? \
 | |
| 	((n) > 20000 ? __bad_ndelay() : __const_udelay((n) * 5ul)) : \
 | |
| 	__ndelay(n))
 | |
| 
 | |
| #endif /* __ASM_SH_DELAY_H */
 |