source: cmedia/trunk/Include/Asm/delay.h

Last change on this file was 354, checked in by stevenhl, 17 years ago

Import untested baseline cmedia sources, work products and binaries
Binaries and work products should be deleted from repository.
once new builds are verified to work.

File size: 431 bytes
Line 
1/* $Id: delay.h,v 1.1 2000/04/23 14:55:28 ktk Exp $ */
2
3#ifndef _I386_DELAY_H
4#define _I386_DELAY_H
5
6/*
7 * Copyright (C) 1993 Linus Torvalds
8 *
9 * Delay routines calling functions in arch/i386/lib/delay.c
10 */
11
12extern void __udelay(unsigned long usecs);
13extern void __const_udelay(unsigned long usecs);
14extern void __delay(unsigned long loops);
15
16#define udelay(n) __udelay(n)
17
18#endif /* defined(_I386_DELAY_H) */
Note: See TracBrowser for help on using the repository browser.