Subversion Repositories Kolibri OS

Compare Revisions

Regard whitespace Rev 6082 → Rev 6102

/drivers/include/linux/bitops.h
107,7 → 107,7
*/
static inline __u32 rol32(__u32 word, unsigned int shift)
{
return (word << shift) | (word >> (32 - shift));
return (word << shift) | (word >> ((-shift) & 31));
}
 
/**