x86: bitops_32.h style cleanups

Coding style cleanups in x86/bitops_32.h:

- drop space in "* addr"
- whitespace & indentation fixes
- spello fixes

Signed-off-by: Randy Dunlap <randy.dunlap@oracle.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
This commit is contained in:
Randy Dunlap 2008-01-30 13:30:32 +01:00 committed by Ingo Molnar
parent c9cce83dd1
commit ec12fa5c80

View file

@ -318,7 +318,7 @@ static inline int variable_test_bit(int nr, const volatile unsigned long * addr)
* @addr: The address to start the search at * @addr: The address to start the search at
* @size: The maximum size to search * @size: The maximum size to search
* *
* Returns the bit-number of the first zero bit, not the number of the byte * Returns the bit number of the first zero bit, not the number of the byte
* containing a bit. * containing a bit.
*/ */
static inline int find_first_zero_bit(const unsigned long *addr, unsigned size) static inline int find_first_zero_bit(const unsigned long *addr, unsigned size)
@ -372,7 +372,7 @@ static inline unsigned long __ffs(unsigned long word)
* @addr: The address to start the search at * @addr: The address to start the search at
* @size: The maximum size to search * @size: The maximum size to search
* *
* Returns the bit-number of the first set bit, not the number of the byte * Returns the bit number of the first set bit, not the number of the byte
* containing a bit. * containing a bit.
*/ */
static inline unsigned find_first_bit(const unsigned long *addr, unsigned size) static inline unsigned find_first_bit(const unsigned long *addr, unsigned size)