]> git.kernelconcepts.de Git - karo-tx-uboot.git/commit
Remove the __STRICT_ANSI__ check from the __u64/__s64 declaration on 32bit targets.
authorShinya Kuribayashi <skuribay@ruby.dti.ne.jp>
Sat, 23 Feb 2008 08:24:16 +0000 (17:24 +0900)
committerWolfgang Denk <wd@denx.de>
Sat, 23 Feb 2008 08:49:48 +0000 (09:49 +0100)
commitb075d74efb70ff68c49a2532f26b56d6703b69c1
treed8974f967c97efc808fe5384e4332da679ae4f0d
parent208acd112e6517b21fc30c420396902b103563ac
Remove the __STRICT_ANSI__ check from the __u64/__s64 declaration on 32bit targets.

----------------------------------------------------------------
Olaf Hering [Wed, 17 Oct 2007 06:27:13 +0000 (23:27 -0700)]

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>
----------------------------------------------------------------

Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
include/asm-arm/types.h
include/asm-avr32/types.h
include/asm-blackfin/types.h
include/asm-m68k/types.h
include/asm-mips/types.h
include/asm-ppc/types.h
include/asm-sh/types.h