patch-2.4.7 linux/include/asm-cris/delay.h
Next file: linux/include/asm-cris/dma.h
Previous file: linux/include/asm-cris/bitops.h
Back to the patch index
Back to the overall index
- Lines: 51
- Date:
Wed Jul 4 11:50:39 2001
- Orig file:
v2.4.6/linux/include/asm-cris/delay.h
- Orig date:
Fri Apr 6 10:51:19 2001
diff -u --recursive --new-file v2.4.6/linux/include/asm-cris/delay.h linux/include/asm-cris/delay.h
@@ -1,4 +1,4 @@
-/* $Id: delay.h,v 1.3 2001/02/23 13:47:33 bjornw Exp $ */
+/* $Id: delay.h,v 1.4 2001/05/31 06:40:53 markusl Exp $ */
#ifndef _CRIS_DELAY_H
#define _CRIS_DELAY_H
@@ -20,23 +20,17 @@
extern __inline__ void __delay(int loops)
{
- /* need to be a great deal of nops, because Etrax shuts off IRQ's during a branch
- and we depend on the irq's to measure the time! */
-
__asm__ __volatile__ (
- "move.d %0,r0\n"
+ "move.d %0,r0\n\t"
"1:\n\t"
- "nop\n\t"
- "nop\n\t"
- "nop\n\t"
- "nop\n\t"
- "nop\n\t"
- "nop\n\t"
+ "cmpq 0,r0\n\t"
+ "beq 2f\n\t"
"nop\n\t"
"subq 1,r0\n\t"
- "bne 1b\n\t"
+ "ba 1b\n\t"
"nop\n\t"
- : : "r" (loops) : "r0", "cc");
+ "2:\n\t"
+ : : "r" (loops) : "r0");
}
@@ -55,13 +49,7 @@
__delay(usecs * loops_per_usec);
}
-extern __inline__ unsigned long muldiv(unsigned long a, unsigned long b, unsigned long c)
-{
- printk("muldiv called!\n");
- return 0;
-}
-
-#endif /* defined(_ETRAX_DELAY_H) */
+#endif /* defined(_CRIS_DELAY_H) */
FUNET's LINUX-ADM group, linux-adm@nic.funet.fi
TCL-scripts by Sam Shen (who was at: slshen@lbl.gov)