diff --git a/[refs] b/[refs] index d7bb27524480..7ab0b421bd42 100644 --- a/[refs] +++ b/[refs] @@ -1,2 +1,2 @@ --- -refs/heads/master: 845884d332c060b0dfc54ba5a580d0f1a99c58a2 +refs/heads/master: 3960f2faaf0a67ad352bd5d4085e43f19f33ab91 diff --git a/trunk/include/asm-m68knommu/bitops.h b/trunk/include/asm-m68knommu/bitops.h index 4058dd086a02..25d8a3cfef90 100644 --- a/trunk/include/asm-m68knommu/bitops.h +++ b/trunk/include/asm-m68knommu/bitops.h @@ -290,7 +290,7 @@ static __inline__ int find_next_zero_bit (const void * addr, int size, int offse tmp = *p; found_first: - tmp |= ~0UL >> size; + tmp |= ~0UL << size; found_middle: return result + ffz(tmp); }