Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 19624
b: refs/heads/master
c: bcc68b8
h: refs/heads/master
v: v3
  • Loading branch information
Alexey Dobriyan authored and Linus Torvalds committed Feb 3, 2006
1 parent f639f4b commit 0a56e3c
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 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: 54e8ce463a7e21dbe9dad57723ed47653ee5db15
refs/heads/master: bcc68b8616bcac47dbfc414398e382b3b10faf4c
2 changes: 1 addition & 1 deletion trunk/include/asm-cris/bitops.h
Original file line number Diff line number Diff line change
Expand Up @@ -290,7 +290,7 @@ static inline int find_next_zero_bit (const unsigned long * addr, int size, int
tmp = *p;

found_first:
tmp |= ~0UL >> size;
tmp |= ~0UL << size;
found_middle:
return result + ffz(tmp);
}
Expand Down
2 changes: 1 addition & 1 deletion trunk/include/asm-frv/bitops.h
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,7 @@ static inline int find_next_zero_bit(const void *addr, int size, int offset)
tmp = *p;

found_first:
tmp |= ~0UL >> size;
tmp |= ~0UL << size;
found_middle:
return result + ffz(tmp);
}
Expand Down
2 changes: 1 addition & 1 deletion trunk/include/asm-h8300/bitops.h
Original file line number Diff line number Diff line change
Expand Up @@ -227,7 +227,7 @@ static __inline__ int find_next_zero_bit (const unsigned long * addr, int size,
tmp = *p;

found_first:
tmp |= ~0UL >> size;
tmp |= ~0UL << size;
found_middle:
return result + ffz(tmp);
}
Expand Down
2 changes: 1 addition & 1 deletion trunk/include/asm-v850/bitops.h
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ static inline int find_next_zero_bit(const void *addr, int size, int offset)
tmp = *p;

found_first:
tmp |= ~0UL >> size;
tmp |= ~0UL << size;
found_middle:
return result + ffz (tmp);
}
Expand Down

0 comments on commit 0a56e3c

Please sign in to comment.