blob: 123e19aef49d9cd0644b14be6270698852f23e4d [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001#ifndef _CRIS_DELAY_H
2#define _CRIS_DELAY_H
3
4/*
5 * Copyright (C) 1998-2002 Axis Communications AB
6 *
7 * Delay routines, using a pre-computed "loops_per_second" value.
8 */
9
10#include <asm/arch/delay.h>
11
12/* Use only for very small delays ( < 1 msec). */
13
14extern unsigned long loops_per_usec; /* arch/cris/mm/init.c */
15
Jesper Nilssonb43890a2008-01-21 16:38:41 +010016/* May be defined by arch/delay.h. */
17#ifndef udelay
Adrian Bunkd9b54442005-11-07 00:58:44 -080018static inline void udelay(unsigned long usecs)
Linus Torvalds1da177e2005-04-16 15:20:36 -070019{
20 __delay(usecs * loops_per_usec);
21}
Jesper Nilssonb43890a2008-01-21 16:38:41 +010022#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070023
24#endif /* defined(_CRIS_DELAY_H) */
25
26
27