Linux-2.6.12-rc2
[linux-2.6/kvm.git] / arch / um / sys-x86_64 / delay.c
blobf3b5187942b4e65ef14dd27e869fecd50861c7be
1 /*
2 * Copyright 2003 PathScale, Inc.
3 * Copied from arch/x86_64
5 * Licensed under the GPL
6 */
8 #include "asm/processor.h"
10 void __delay(unsigned long loops)
12 unsigned long i;
14 for(i = 0; i < loops; i++) ;
18 * Overrides for Emacs so that we follow Linus's tabbing style.
19 * Emacs will notice this stuff at the end of the file and automatically
20 * adjust the settings for this buffer only. This must remain at the end
21 * of the file.
22 * ---------------------------------------------------------------------------
23 * Local variables:
24 * c-file-style: "linux"
25 * End: