delay_64.h 403 B

123456789101112131415161718
  1. /* SPDX-License-Identifier: GPL-2.0 */
  2. /* delay.h: Linux delay routines on sparc64.
  3. *
  4. * Copyright (C) 1996, 2004, 2007 David S. Miller ([email protected]).
  5. */
  6. #ifndef _SPARC64_DELAY_H
  7. #define _SPARC64_DELAY_H
  8. #ifndef __ASSEMBLY__
  9. void __delay(unsigned long loops);
  10. void udelay(unsigned long usecs);
  11. #define mdelay(n) udelay((n) * 1000)
  12. #endif /* !__ASSEMBLY__ */
  13. #endif /* _SPARC64_DELAY_H */