X-Git-Url: https://git.sur5r.net/?a=blobdiff_plain;f=arch%2Fx86%2Finclude%2Fasm%2Ftypes.h;h=e272c90eb7f6bd3ef52bfb5c1171aab136110c27;hb=a752a8b4c49d67daa4ea9f9ebac3972bb1c2328b;hp=e9fde88f7d4a52a414d7a44d655185f61f3c96b8;hpb=fd4d564b3c80b111f18c93adb14233a6a7ddb0e9;p=u-boot diff --git a/arch/x86/include/asm/types.h b/arch/x86/include/asm/types.h index e9fde88f7d..e272c90eb7 100644 --- a/arch/x86/include/asm/types.h +++ b/arch/x86/include/asm/types.h @@ -36,8 +36,13 @@ typedef unsigned short u16; typedef signed int s32; typedef unsigned int u32; +#if !defined(CONFIG_USE_STDINT) || !defined(__INT64_TYPE__) typedef signed long long s64; typedef unsigned long long u64; +#else +typedef __INT64_TYPE__ s64; +typedef __UINT64_TYPE__ u64; +#endif #define BITS_PER_LONG 32