From 6b70ec02f2dbb391cb0dac22b6ae63867d645b78 Mon Sep 17 00:00:00 2001 From: Mister Oyster Date: Sat, 16 Sep 2017 18:33:36 +0200 Subject: binder: fix redefine of READ/WRITE_ONCE in compiler.h --- include/linux/compiler.h | 2 -- 1 file changed, 2 deletions(-) (limited to 'include/linux/compiler.h') diff --git a/include/linux/compiler.h b/include/linux/compiler.h index 4b13e0cb2..c6d06e91f 100644 --- a/include/linux/compiler.h +++ b/include/linux/compiler.h @@ -437,8 +437,6 @@ static __always_inline void __write_once_size(volatile void *p, void *res, int s * handlers, all running on the same CPU. */ #define ACCESS_ONCE(x) (*(volatile typeof(x) *)&(x)) -#define READ_ONCE(x) ACCESS_ONCE(x) -#define WRITE_ONCE(x, val) ACCESS_ONCE(x) = val /* Ignore/forbid kprobes attach on very low level functions marked by this attribute: */ #ifdef CONFIG_KPROBES -- cgit v1.2.3