projects
/
platform
/
upstream
/
kernel-adaptation-pc.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
5a1342f
)
[PATCH] s390: fix __delay implementation
author
Heiko Carstens
<heiko.carstens@de.ibm.com>
Tue, 14 Feb 2006 21:53:14 +0000
(13:53 -0800)
committer
Linus Torvalds
<torvalds@g5.osdl.org>
Wed, 15 Feb 2006 00:09:35 +0000
(16:09 -0800)
Fix __delay implementation. Called with an argument "1" or "0" it would
loop nearly forever (since (1/2)-1 = 0xffffffff).
Signed-off-by: Heiko Carstens <heiko.carstens@de.ibm.com>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
arch/s390/lib/delay.c
patch
|
blob
|
history
diff --git
a/arch/s390/lib/delay.c
b/arch/s390/lib/delay.c
index
e96c35b
..
71f0a2f
100644
(file)
--- a/
arch/s390/lib/delay.c
+++ b/
arch/s390/lib/delay.c
@@
-30,7
+30,7
@@
void __delay(unsigned long loops)
*/
__asm__ __volatile__(
"0: brct %0,0b"
- : /* no outputs */ : "r" (
loops/2)
);
+ : /* no outputs */ : "r" (
(loops/2) + 1)
);
}
/*