]> err.no Git - linux-2.6/blobdiff - include/asm-i386/atomic.h
[PATCH] make 1-bit bitfields unsigned
[linux-2.6] / include / asm-i386 / atomic.h
index 51a166242522ab9ab9fe5d998986a3ff8637e24e..a6c024e2506f8126195c337b8ff8bc4759cb8e2c 100644 (file)
@@ -14,7 +14,7 @@
  * on us. We need to use _exactly_ the address the user gave us,
  * not some alias that contains the same information.
  */
-typedef struct { volatile int counter; } atomic_t;
+typedef struct { int counter; } atomic_t;
 
 #define ATOMIC_INIT(i) { (i) }