aboutsummaryrefslogtreecommitdiffstats
path: root/xen/include/asm-x86/delay.h
blob: 9be2f465901a52064fa3906bd7c08042fcf88b21 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#ifndef _X86_DELAY_H
#define _X86_DELAY_H

/*
 * Copyright (C) 1993 Linus Torvalds
 *
 * Delay routines calling functions in arch/i386/lib/delay.c
 */

extern void __udelay(unsigned long usecs);
#define udelay(n) __udelay(n)

#endif /* defined(_X86_DELAY_H) */