macvlan: remove one synchronize_rcu() call
[firefly-linux-kernel-4.4.55.git] / include / linux / compiler-gcc4.h
index fcfa5b9a4317af2b272d06073d7af51019ebf321..64b7c003fd7a50c056d98f0a2aa412da067a753d 100644 (file)
 #define __used                 __attribute__((__used__))
 #define __must_check           __attribute__((warn_unused_result))
 #define __compiler_offsetof(a,b) __builtin_offsetof(a,b)
-#define __always_inline                inline __attribute__((always_inline))
-
-/*
- * A trick to suppress uninitialized variable warning without generating any
- * code
- */
-#define uninitialized_var(x) x = x
 
 #if __GNUC_MINOR__ >= 3
 /* Mark functions as cold. gcc will assume any path leading to a call
@@ -53,7 +46,6 @@
 #define __noclone      __attribute__((__noclone__))
 
 #endif
-
 #endif
 
 #if __GNUC_MINOR__ > 0