diff --git a/[refs] b/[refs] index 2273e278cfb5..7ed9c9d686e2 100644 --- a/[refs] +++ b/[refs] @@ -1,2 +1,2 @@ --- -refs/heads/master: ccec25ff69d5f48c7a088c16fe2dc7e11d9e87fe +refs/heads/master: 434ae514c23047db87a8bbf39cebc9e1767aea44 diff --git a/trunk/include/asm-m68k/bitops.h b/trunk/include/asm-m68k/bitops.h index 3e8106442d5a..9bde784e7bad 100644 --- a/trunk/include/asm-m68k/bitops.h +++ b/trunk/include/asm-m68k/bitops.h @@ -315,6 +315,11 @@ static inline int fls(int x) return 32 - cnt; } +static inline int __fls(int x) +{ + return fls(x) - 1; +} + #include #include #include