[PATCH] include/asm-*/bitops.h: fix more "~0UL >> size" typos "[PATCH] m68knommu: fix find_next_zero_bit in bitops.h" fixed a typo in m68knommu implementation of find_next_zero_bit(). grep(1) shows that cris, frv, h8300, v850 are also affected. Signed-off-by: Alexey Dobriyan <adobriyan@gmail.com> Cc: Mikael Starvik <starvik@axis.com> Cc: David Howells <dhowells@redhat.com> Cc: Yoshinori Sato <ysato@users.sourceforge.jp> Cc: Miles Bader <uclinux-v850@lsi.nec.co.jp> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
diff --git a/include/asm-cris/bitops.h b/include/asm-cris/bitops.h index d3eb0f1..b7fef15 100644 --- a/include/asm-cris/bitops.h +++ b/include/asm-cris/bitops.h
@@ -290,7 +290,7 @@ tmp = *p; found_first: - tmp |= ~0UL >> size; + tmp |= ~0UL << size; found_middle: return result + ffz(tmp); }
diff --git a/include/asm-frv/bitops.h b/include/asm-frv/bitops.h index 02be7b3..f686b51 100644 --- a/include/asm-frv/bitops.h +++ b/include/asm-frv/bitops.h
@@ -209,7 +209,7 @@ tmp = *p; found_first: - tmp |= ~0UL >> size; + tmp |= ~0UL << size; found_middle: return result + ffz(tmp); }
diff --git a/include/asm-h8300/bitops.h b/include/asm-h8300/bitops.h index c0411ec..ff7c2b7 100644 --- a/include/asm-h8300/bitops.h +++ b/include/asm-h8300/bitops.h
@@ -227,7 +227,7 @@ tmp = *p; found_first: - tmp |= ~0UL >> size; + tmp |= ~0UL << size; found_middle: return result + ffz(tmp); }
diff --git a/include/asm-v850/bitops.h b/include/asm-v850/bitops.h index 8955d23..609b9e8 100644 --- a/include/asm-v850/bitops.h +++ b/include/asm-v850/bitops.h
@@ -188,7 +188,7 @@ tmp = *p; found_first: - tmp |= ~0UL >> size; + tmp |= ~0UL << size; found_middle: return result + ffz (tmp); }