Merge git://git.infradead.org/battery-2.6
[pandora-kernel.git] / include / linux / compiler-gcc.h
index 16508bc..cb4c1eb 100644 (file)
 #if !defined(__noclone)
 #define __noclone      /* not needed */
 #endif
+
+/*
+ * A trick to suppress uninitialized variable warning without generating any
+ * code
+ */
+#define uninitialized_var(x) x = x
+
+#define __always_inline                inline __attribute__((always_inline))