tools/lib/lockdep: Remove private kernel headers
[sfrench/cifs-2.6.git] / tools / include / linux / compiler.h
index 23299d7e71602efd2bd317786ca5fc800b2ed4a2..ef6ab908a42f57b93cf1f49a7316f3c89be1a516 100644 (file)
 # define __maybe_unused                __attribute__((unused))
 #endif
 
+#ifndef __used
+# define __used                __attribute__((__unused__))
+#endif
+
 #ifndef __packed
 # define __packed              __attribute__((__packed__))
 #endif
 # define unlikely(x)           __builtin_expect(!!(x), 0)
 #endif
 
+#ifndef __init
+# define __init
+#endif
+
+#ifndef noinline
+# define noinline
+#endif
+
 #define uninitialized_var(x) x = *(&(x))
 
 #define ACCESS_ONCE(x) (*(volatile typeof(x) *)&(x))