X-Git-Url: https://git.librecmc.org/?a=blobdiff_plain;f=include%2Fasm-arm%2Fbitops.h;h=4b8bab28373bbe42d8ec17dbb052aea2e95648fd;hb=8bde7f776c77b343aca29b8c7b58464d915ac245;hp=47338585a384d3d407e47406248ae6b74fdbcc55;hpb=993cad9364c6b87ae429d1ed1130d8153f6f027e;p=oweals%2Fu-boot.git diff --git a/include/asm-arm/bitops.h b/include/asm-arm/bitops.h index 47338585a3..4b8bab2837 100644 --- a/include/asm-arm/bitops.h +++ b/include/asm-arm/bitops.h @@ -106,7 +106,7 @@ static inline unsigned long ffz(unsigned long word) if (word & 0x0f000000) { k -= 4; word <<= 4; } if (word & 0x30000000) { k -= 2; word <<= 2; } if (word & 0x40000000) { k -= 1; } - return k; + return k; } /*