diff options
author | Chris Zankel <czankel@tensilica.com> | 2005-06-30 02:59:00 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@ppc970.osdl.org> | 2005-06-30 08:45:11 -0700 |
commit | 9ec55a9bd365dfc78945bb8e6bf5d0fdf1d75ad0 (patch) | |
tree | a7299a8e320b2205426a7e030db61b44ce1887c7 /include/asm-xtensa/delay.h | |
parent | e7d163f7666560c90b163907b9d96ec6207e0f6f (diff) | |
download | linux-3.10-9ec55a9bd365dfc78945bb8e6bf5d0fdf1d75ad0.tar.gz linux-3.10-9ec55a9bd365dfc78945bb8e6bf5d0fdf1d75ad0.tar.bz2 linux-3.10-9ec55a9bd365dfc78945bb8e6bf5d0fdf1d75ad0.zip |
[PATCH] xtensa: Fix asm macro
Removed dead code in arch/xtensa/kernel/pci.c and use the pci_name() macro.
Fixed an error in the delay asm macro: '1' is an invalid immediate value.
Signed-off-by: Chris Zankel <chris@zankel.net>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'include/asm-xtensa/delay.h')
-rw-r--r-- | include/asm-xtensa/delay.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/asm-xtensa/delay.h b/include/asm-xtensa/delay.h index 6359c55e77a..0a123d53a63 100644 --- a/include/asm-xtensa/delay.h +++ b/include/asm-xtensa/delay.h @@ -21,7 +21,7 @@ extern unsigned long loops_per_jiffy; extern __inline__ void __delay(unsigned long loops) { /* 2 cycles per loop. */ - __asm__ __volatile__ ("1: addi %0, %0, -2; bgeui %0, 1, 1b" + __asm__ __volatile__ ("1: addi %0, %0, -2; bgeui %0, 2, 1b" : "=r" (loops) : "0" (loops)); } |