> Oops, mea culpa on that one.  It's missing a trailing `__' on the end of 
> __GNUC_MINOR
Looks like Linus already committed it.
Attached patch is against the updated BK and fixes the omission.  Sorry.
	Robert Love
 include/linux/compiler.h |    2 +-
 1 files changed, 1 insertion(+), 1 deletion(-)
diff -urN linux-2.5.53/include/linux/compiler.h linux/include/linux/compiler.h
--- linux-2.5.53/include/linux/compiler.h	2002-12-31 18:39:55.000000000 -0500
+++ linux/include/linux/compiler.h	2002-12-31 18:40:10.000000000 -0500
@@ -19,7 +19,7 @@
  * Usage is:
  * 		int __deprecated foo(void)
  */
-#if ( __GNUC__ == 3 && __GNUC_MINOR > 0 ) || __GNUC__ > 3
+#if ( __GNUC__ == 3 && __GNUC_MINOR__ > 0 ) || __GNUC__ > 3
 #define __deprecated	__attribute__((deprecated))
 #else
 #define __deprecated
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/