* [PATCH] Style Fix in __constant_test_bit for S390, remove one set of ( )
@ 2006-02-02 18:01 Eric Paris
0 siblings, 0 replies; only message in thread
From: Eric Paris @ 2006-02-02 18:01 UTC (permalink / raw)
To: schwidefsky, linux390, linux-390, linux-kernel
Right now in __constant_test_bit for the s390 there is an extra set of
() surrounding the calculation. Putting it all on one line it could
read like
return (( ((volatile char *) addr) [(nr^(__BITOPS_WORDSIZE-8))>>3] & (1<<(nr&7)) )) != 0;
This patch simply removes one set of () that is surrounding the whole
clause.
Signed-off-by: Eric Paris <eparis@redhat.com>
---
bitops.h | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
--- linux-2.6.15.2/include/asm-s390/bitops.h.old
+++ linux-2.6.15.2/include/asm-s390/bitops.h
@@ -518,8 +518,8 @@ static inline int __test_bit(unsigned lo
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) \
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2006-02-02 18:01 UTC | newest]
Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2006-02-02 18:01 [PATCH] Style Fix in __constant_test_bit for S390, remove one set of ( ) Eric Paris
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®