]> err.no Git - linux-2.6/blobdiff - include/asm-x86/bitops_32.h
x86: move mce related declarations
[linux-2.6] / include / asm-x86 / bitops_32.h
index 36ebb5b02b4f1fa330a30fa17a95ab2b04818dc6..0b40f6d20bea207081fd739f8eae5b9bb3ac12f4 100644 (file)
@@ -183,9 +183,12 @@ static inline int test_and_set_bit(int nr, volatile unsigned long * addr)
  * @nr: Bit to set
  * @addr: Address to count from
  *
- * This is the same as test_and_set_bit on x86
+ * This is the same as test_and_set_bit on x86.
  */
-#define test_and_set_bit_lock test_and_set_bit
+static inline int test_and_set_bit_lock(int nr, volatile unsigned long *addr)
+{
+       return test_and_set_bit(nr, addr);
+}
 
 /**
  * __test_and_set_bit - Set a bit and return its old value