Remove trailing/leading whitespace

This commit is contained in:
Aki Niemi 2010-01-11 11:08:42 +02:00
parent 2617686d4a
commit 8f99e50ce5
1 changed files with 2 additions and 2 deletions

View File

@ -45,12 +45,12 @@ static inline int ffz(unsigned long word)
return __builtin_ctzl(~word); return __builtin_ctzl(~word);
} }
/* /*
* Stolen from linux kernel lib/find_next_bit.c * Stolen from linux kernel lib/find_next_bit.c
*/ */
static unsigned int find_next_zero_bit(const unsigned long *addr, static unsigned int find_next_zero_bit(const unsigned long *addr,
unsigned int size, unsigned int size,
unsigned int offset) unsigned int offset)
{ {
const unsigned long *p = addr + offset / BITS_PER_LONG; const unsigned long *p = addr + offset / BITS_PER_LONG;
unsigned int result = offset & ~(BITS_PER_LONG-1); unsigned int result = offset & ~(BITS_PER_LONG-1);