diff options
author | Chris Snook <csnook@redhat.com> | 2007-10-17 12:04:38 -0400 |
---|---|---|
committer | Thomas Gleixner <tglx@inhelltoy.tec.linutronix.de> | 2007-10-17 14:16:21 -0400 |
commit | 883001f98290ca40b32e2c1872f22600f8dfc968 (patch) | |
tree | c9ed5fc29873d17d012723134968c1ec3f0b40f4 /include/asm-x86/atomic_64.h | |
parent | 5f1f935ca4e385444c07164cf43dfdfe5eeee006 (diff) |
x86: make atomic64_t work like atomic_t
The volatile keyword has already been removed from the declaration of atomic_t
on x86_64. For consistency, remove it from atomic64_t as well.
[ tglx: arch/x86 adaptation ]
Signed-off-by: Chris Snook <csnook@redhat.com>
Signed-off-by: Andi Kleen <ak@suse.de>
CC: Andi Kleen <andi@firstfloor.org>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Diffstat (limited to 'include/asm-x86/atomic_64.h')
-rw-r--r-- | include/asm-x86/atomic_64.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/asm-x86/atomic_64.h b/include/asm-x86/atomic_64.h index f2e64634fa48..2d20a7a19f62 100644 --- a/include/asm-x86/atomic_64.h +++ b/include/asm-x86/atomic_64.h | |||
@@ -206,7 +206,7 @@ static __inline__ int atomic_sub_return(int i, atomic_t *v) | |||
206 | 206 | ||
207 | /* An 64bit atomic type */ | 207 | /* An 64bit atomic type */ |
208 | 208 | ||
209 | typedef struct { volatile long counter; } atomic64_t; | 209 | typedef struct { long counter; } atomic64_t; |
210 | 210 | ||
211 | #define ATOMIC64_INIT(i) { (i) } | 211 | #define ATOMIC64_INIT(i) { (i) } |
212 | 212 | ||