Linux Kernel  3.7.1
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
delay_64.h
Go to the documentation of this file.
1 /* delay.h: Linux delay routines on sparc64.
2  *
3  * Copyright (C) 1996, 2004, 2007 David S. Miller ([email protected]).
4  */
5 
6 #ifndef _SPARC64_DELAY_H
7 #define _SPARC64_DELAY_H
8 
9 #ifndef __ASSEMBLY__
10 
11 extern void __delay(unsigned long loops);
12 extern void udelay(unsigned long usecs);
13 #define mdelay(n) udelay((n) * 1000)
14 
15 #endif /* !__ASSEMBLY__ */
16 
17 #endif /* _SPARC64_DELAY_H */