commit d89d8e0637a5e4e0a12e90c4bc934d0d4c335239 break 64-bit build. Signed-off-by: Atsushi Nemoto <anemo@xxxxxxxxxxxxx> diff --git a/include/asm-mips/atomic.h b/include/asm-mips/atomic.h index 7978d8e..3657670 100644 --- a/include/asm-mips/atomic.h +++ b/include/asm-mips/atomic.h @@ -375,7 +375,7 @@ #define atomic_add_negative(i,v) (atomic #ifdef CONFIG_64BIT -typedef struct { volatile __s64 counter; } atomic64_t; +typedef struct { volatile long counter; } atomic64_t; #define ATOMIC64_INIT(i) { (i) }