types: s390: fix #ifdef reversal in <asm-s390/types.h>
authorH. Peter Anvin <hpa@zytor.com>
Fri, 9 May 2008 16:46:38 +0000 (09:46 -0700)
committerH. Peter Anvin <hpa@zytor.com>
Mon, 12 May 2008 15:49:59 +0000 (08:49 -0700)
commit2ccdcfeeca6a1888180ffc4a1ab097f1fb2bd029
tree5472bdef2a5861733776d28d1107d88f2e7bb26c
parent492c2e476eac010962850006c49df326919b284c
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>
include/asm-s390/types.h