aboutsummaryrefslogtreecommitdiffstats
path: root/include/asm-i386/sync_bitops.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/asm-i386/sync_bitops.h')
-rw-r--r--include/asm-i386/sync_bitops.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/asm-i386/sync_bitops.h b/include/asm-i386/sync_bitops.h
index c94d51c993ee..7d72351bea75 100644
--- a/include/asm-i386/sync_bitops.h
+++ b/include/asm-i386/sync_bitops.h
@@ -130,7 +130,7 @@ static inline int sync_test_and_change_bit(int nr, volatile unsigned long* addr)
return oldbit;
}
-static __always_inline int sync_const_test_bit(int nr, const volatile unsigned long *addr)
+static __always_inline int sync_constant_test_bit(int nr, const volatile unsigned long *addr)
{
return ((1UL << (nr & 31)) &
(((const volatile unsigned int *)addr)[nr >> 5])) != 0;