mirror of
https://github.com/torvalds/linux.git
synced 2024-12-02 17:11:33 +00:00
f05a68653e
Drop extern for all prototypes and adjust alignment of parameters as required after the removal. In a few rare cases adjust linelength to conform to maximum 80 chars, and likewise in a few rare cases adjust alignment of parameters to static functions. Signed-off-by: Sam Ravnborg <sam@ravnborg.org> Signed-off-by: David S. Miller <davem@davemloft.net>
18 lines
364 B
C
18 lines
364 B
C
/* delay.h: Linux delay routines on sparc64.
|
|
*
|
|
* Copyright (C) 1996, 2004, 2007 David S. Miller (davem@davemloft.net).
|
|
*/
|
|
|
|
#ifndef _SPARC64_DELAY_H
|
|
#define _SPARC64_DELAY_H
|
|
|
|
#ifndef __ASSEMBLY__
|
|
|
|
void __delay(unsigned long loops);
|
|
void udelay(unsigned long usecs);
|
|
#define mdelay(n) udelay((n) * 1000)
|
|
|
|
#endif /* !__ASSEMBLY__ */
|
|
|
|
#endif /* _SPARC64_DELAY_H */
|