ARM: 6621/1: bitops: remove condition code clobber for CLZ
authorRabin Vincent <rabin@rab.in>
Wed, 12 Jan 2011 13:38:52 +0000 (14:38 +0100)
committerRussell King <rmk+kernel@arm.linux.org.uk>
Wed, 12 Jan 2011 14:22:25 +0000 (14:22 +0000)
The CLZ instruction does not alter the condition flags, so remove the
"cc" clobber from the inline asm for fls().

Acked-by: Nicolas Pitre <nicolas.pitre@linaro.org>
Signed-off-by: Rabin Vincent <rabin@rab.in>
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
arch/arm/include/asm/bitops.h

index 338ff19..7b1bb2b 100644 (file)
@@ -285,7 +285,7 @@ static inline int fls(int x)
        if (__builtin_constant_p(x))
               return constant_fls(x);
 
-       asm("clz\t%0, %1" : "=r" (ret) : "r" (x) : "cc");
+       asm("clz\t%0, %1" : "=r" (ret) : "r" (x));
                ret = 32 - ret;
        return ret;
 }