diff options
author | Eric Paris <eparis@redhat.com> | 2006-02-11 17:56:04 -0800 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-02-11 21:41:13 -0800 |
commit | ef1bea9e2a5a72d2c3362522e0a09099406732ff (patch) | |
tree | 3d953b0f2f4c97a44dec193092660cd33cacc1d3 /include/asm-s390 | |
parent | 0defa3c19e7792001df09d6fa5ab461d3599ff6d (diff) | |
download | kernel_samsung_smdk4412-ef1bea9e2a5a72d2c3362522e0a09099406732ff.zip kernel_samsung_smdk4412-ef1bea9e2a5a72d2c3362522e0a09099406732ff.tar.gz kernel_samsung_smdk4412-ef1bea9e2a5a72d2c3362522e0a09099406732ff.tar.bz2 |
[PATCH] s390: remove one set of brackets in __constant_test_bit()
Right now in __constant_test_bit for the s390 there is an extra set of ()
surrounding the calculation. This patch simply removes one set of () that is
surrounding the whole clause.
Signed-off-by: Eric Paris <eparis@redhat.com>
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>
Diffstat (limited to 'include/asm-s390')
-rw-r--r-- | include/asm-s390/bitops.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/asm-s390/bitops.h b/include/asm-s390/bitops.h index 6123276..3628899 100644 --- a/include/asm-s390/bitops.h +++ b/include/asm-s390/bitops.h @@ -518,8 +518,8 @@ static inline int __test_bit(unsigned long nr, const volatile unsigned long *ptr static inline int __constant_test_bit(unsigned long nr, const volatile unsigned long *addr) { - return ((((volatile char *) addr) - [(nr^(__BITOPS_WORDSIZE-8))>>3] & (1<<(nr&7)))) != 0; + return (((volatile char *) addr) + [(nr^(__BITOPS_WORDSIZE-8))>>3] & (1<<(nr&7))) != 0; } #define test_bit(nr,addr) \ |