]> git.baikalelectronics.ru Git - kernel.git/commit
remove strict ansi check from __u64 in asm/types.h
authorOlaf Hering <olh@suse.de>
Wed, 17 Oct 2007 06:27:13 +0000 (23:27 -0700)
committerLinus Torvalds <torvalds@woody.linux-foundation.org>
Wed, 17 Oct 2007 15:42:53 +0000 (08:42 -0700)
commitf05cc49b40f3ef526f7119de1647dd2301cefa88
treef6dd6ea6f4b45194fdfb4022cf1203573362d8b6
parent58732d191a6ef56dba525f1c8a14c8ad409584c6
remove strict ansi check from __u64 in asm/types.h

Remove the __STRICT_ANSI__ check from the __u64/__s64 declaration on
32bit targets.

GCC can be made to warn about usage of long long types with ISO C90
(-ansi), but only with -pedantic.  You can write this in a way that even
then it doesn't cause warnings, namely by:

#ifdef __GNUC__
__extension__ typedef __signed__ long long __s64;
__extension__ typedef unsigned long long __u64;
#endif

The __extension__ keyword in front of this switches off any pedantic
warnings for this expression.

Signed-off-by: Olaf Hering <olh@suse.de>
Cc: <linux-arch@vger.kernel.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
17 files changed:
include/asm-arm/types.h
include/asm-avr32/types.h
include/asm-blackfin/types.h
include/asm-cris/types.h
include/asm-frv/types.h
include/asm-h8300/types.h
include/asm-m32r/types.h
include/asm-m68k/types.h
include/asm-mips/types.h
include/asm-parisc/types.h
include/asm-powerpc/types.h
include/asm-s390/types.h
include/asm-sh/types.h
include/asm-sh64/types.h
include/asm-v850/types.h
include/asm-x86/types_32.h
include/asm-xtensa/types.h