diff options
author | H. Peter Anvin <hpa@zytor.com> | 2008-05-09 12:46:38 -0400 |
---|---|---|
committer | H. Peter Anvin <hpa@zytor.com> | 2008-05-12 11:49:59 -0400 |
commit | 2ccdcfeeca6a1888180ffc4a1ab097f1fb2bd029 (patch) | |
tree | 5472bdef2a5861733776d28d1107d88f2e7bb26c /include/asm-s390 | |
parent | 492c2e476eac010962850006c49df326919b284c (diff) |
types: s390: fix #ifdef reversal in <asm-s390/types.h>
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 <hpa@zytor.com>
Cc: Martin Schwidefsky <schwidefsky@de.ibm.com>
Cc: Heiko Carstens <heiko.carstens@de.ibm.com>
Cc: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'include/asm-s390')
-rw-r--r-- | include/asm-s390/types.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/asm-s390/types.h b/include/asm-s390/types.h index 78dda038dd47..0e959e20e9a3 100644 --- a/include/asm-s390/types.h +++ b/include/asm-s390/types.h | |||
@@ -10,9 +10,9 @@ | |||
10 | #define _S390_TYPES_H | 10 | #define _S390_TYPES_H |
11 | 11 | ||
12 | #ifndef __s390x__ | 12 | #ifndef __s390x__ |
13 | # include <asm-generic/int-l64.h> | ||
14 | #else | ||
15 | # include <asm-generic/int-ll64.h> | 13 | # include <asm-generic/int-ll64.h> |
14 | #else | ||
15 | # include <asm-generic/int-l64.h> | ||
16 | #endif | 16 | #endif |
17 | 17 | ||
18 | #ifndef __ASSEMBLY__ | 18 | #ifndef __ASSEMBLY__ |