From: H. Peter Anvin Date: Fri, 9 May 2008 16:46:38 +0000 (-0700) Subject: types: s390: fix #ifdef reversal in X-Git-Tag: v2.6.26-rc3~130^2 X-Git-Url: http://www.pilppa.org/gitweb/gitweb.cgi?a=commitdiff_plain;h=2ccdcfeeca6a1888180ffc4a1ab097f1fb2bd029;p=linux-2.6-omap-h63xx.git types: s390: fix #ifdef reversal in The #ifdef for the integer types was reversed; the standard pattern in these files are: #ifndef __s390x__ /* 32-bit code */ #else /* 64-bit code */ #endif Stick with the original pattern, but make sure the 32-bit code actually comes first! Reported by Al Viro. Signed-off-by: H. Peter Anvin Cc: Martin Schwidefsky Cc: Heiko Carstens Cc: Al Viro --- diff --git a/include/asm-s390/types.h b/include/asm-s390/types.h index 78dda038dd4..0e959e20e9a 100644 --- a/include/asm-s390/types.h +++ b/include/asm-s390/types.h @@ -10,9 +10,9 @@ #define _S390_TYPES_H #ifndef __s390x__ -# include -#else # include +#else +# include #endif #ifndef __ASSEMBLY__