2005-11-14 07:22:01 +01:00
|
|
|
#ifndef _ASM_POWERPC_DELAY_H
|
|
|
|
#define _ASM_POWERPC_DELAY_H
|
2005-12-16 22:43:46 +01:00
|
|
|
#ifdef __KERNEL__
|
2005-04-17 00:20:36 +02:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Copyright 1996, Paul Mackerras.
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License
|
|
|
|
* as published by the Free Software Foundation; either version
|
|
|
|
* 2 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* PPC64 Support added by Dave Engebretsen, Todd Inglett, Mike Corrigan,
|
|
|
|
* Anton Blanchard.
|
|
|
|
*/
|
|
|
|
|
2005-11-18 03:44:17 +01:00
|
|
|
extern void __delay(unsigned long loops);
|
|
|
|
extern void udelay(unsigned long usecs);
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2005-12-16 22:43:46 +01:00
|
|
|
#endif /* __KERNEL__ */
|
2005-11-14 07:22:01 +01:00
|
|
|
#endif /* _ASM_POWERPC_DELAY_H */
|