diff options
Diffstat (limited to 'include/asm-x86/sync_bitops.h')
-rw-r--r-- | include/asm-x86/sync_bitops.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/asm-x86/sync_bitops.h b/include/asm-x86/sync_bitops.h index f1078a5e4ed7..b47a1d0b8a83 100644 --- a/include/asm-x86/sync_bitops.h +++ b/include/asm-x86/sync_bitops.h | |||
@@ -123,7 +123,7 @@ static inline int sync_test_and_change_bit(int nr, volatile unsigned long *addr) | |||
123 | return oldbit; | 123 | return oldbit; |
124 | } | 124 | } |
125 | 125 | ||
126 | #define sync_test_bit test_bit | 126 | #define sync_test_bit(nr, addr) test_bit(nr, addr) |
127 | 127 | ||
128 | #undef ADDR | 128 | #undef ADDR |
129 | 129 | ||