--- zzzz-none-000/linux-2.6.19.2/include/linux/bitops.h 2007-01-10 19:10:37.000000000 +0000 +++ davinci-8020-5505/linux-2.6.19.2/include/linux/bitops.h 2007-02-12 12:59:15.000000000 +0000 @@ -37,7 +37,7 @@ * @word: value to rotate * @shift: bits to roll */ -static inline __u32 rol32(__u32 word, unsigned int shift) +static inline unsigned int rol32(unsigned int word, unsigned int shift) { return (word << shift) | (word >> (32 - shift)); } @@ -48,7 +48,7 @@ * @word: value to rotate * @shift: bits to roll */ -static inline __u32 ror32(__u32 word, unsigned int shift) +static inline unsigned int ror32(unsigned int word, unsigned int shift) { return (word >> shift) | (word << (32 - shift)); }