Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 20220
b: refs/heads/master
c: ef1bea9
h: refs/heads/master
v: v3
  • Loading branch information
Eric Paris authored and Linus Torvalds committed Feb 12, 2006
1 parent 7acb72c commit a18fc38
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 0defa3c19e7792001df09d6fa5ab461d3599ff6d
refs/heads/master: ef1bea9e2a5a72d2c3362522e0a09099406732ff
4 changes: 2 additions & 2 deletions trunk/include/asm-s390/bitops.h
Original file line number Diff line number Diff line change
Expand Up @@ -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) \
Expand Down

0 comments on commit a18fc38

Please sign in to comment.