diff options
Diffstat (limited to 'include/asm-i386/bitops.h')
| -rw-r--r-- | include/asm-i386/bitops.h | 12 | 
1 files changed, 6 insertions, 6 deletions
| diff --git a/include/asm-i386/bitops.h b/include/asm-i386/bitops.h index 7d29335fd..b768e20fb 100644 --- a/include/asm-i386/bitops.h +++ b/include/asm-i386/bitops.h @@ -116,7 +116,7 @@ static __inline__ void change_bit(int nr, volatile void * addr)   * @nr: Bit to set   * @addr: Address to count from   * - * This operation is atomic and cannot be reordered.   + * This operation is atomic and cannot be reordered.   * It also implies a memory barrier.   */  static __inline__ int test_and_set_bit(int nr, volatile void * addr) @@ -135,7 +135,7 @@ static __inline__ int test_and_set_bit(int nr, volatile void * addr)   * @nr: Bit to set   * @addr: Address to count from   * - * This operation is non-atomic and can be reordered.   + * This operation is non-atomic and can be reordered.   * If two examples of this operation race, one can appear to succeed   * but actually fail.  You must protect multiple accesses with a lock.   */ @@ -155,7 +155,7 @@ static __inline__ int __test_and_set_bit(int nr, volatile void * addr)   * @nr: Bit to set   * @addr: Address to count from   * - * This operation is atomic and cannot be reordered.   + * This operation is atomic and cannot be reordered.   * It also implies a memory barrier.   */  static __inline__ int test_and_clear_bit(int nr, volatile void * addr) @@ -174,7 +174,7 @@ static __inline__ int test_and_clear_bit(int nr, volatile void * addr)   * @nr: Bit to set   * @addr: Address to count from   * - * This operation is non-atomic and can be reordered.   + * This operation is non-atomic and can be reordered.   * If two examples of this operation race, one can appear to succeed   * but actually fail.  You must protect multiple accesses with a lock.   */ @@ -206,7 +206,7 @@ static __inline__ int __test_and_change_bit(int nr, volatile void * addr)   * @nr: Bit to set   * @addr: Address to count from   * - * This operation is atomic and cannot be reordered.   + * This operation is atomic and cannot be reordered.   * It also implies a memory barrier.   */  static __inline__ int test_and_change_bit(int nr, volatile void * addr) @@ -292,7 +292,7 @@ static __inline__ int find_next_zero_bit (void * addr, int size, int offset)  {  	unsigned long * p = ((unsigned long *) addr) + (offset >> 5);  	int set = 0, bit = offset & 31, res; -	 +  	if (bit) {  		/*  		 * Look for zero in first byte |