kernel/arch/m68k/include/asm/atomic.h
.. .. @@ -16,8 +16,6 @@ 16 16 * We do not have SMP m68k systems, so we don't have to deal with that. 17 17 */ 18 18 19 -#define ATOMIC_INIT(i) { (i) }20 -21 19 #define atomic_read(v) READ_ONCE((v)->counter) 22 20 #define atomic_set(v, i) WRITE_ONCE(((v)->counter), (i)) 23 21