Remove CONFIG_USE_STDINT

You do not need to use the typedefs provided by compiler.

Our compilers are either IPL32 or LP64.  Hence, U-Boot can/should
always use int-ll64.h typedefs like Linux kernel, whatever the
typedefs the compiler internally uses.

Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
This commit is contained in:
Masahiro Yamada 2018-08-06 20:47:38 +09:00 committed by Tom Rini
parent de39dc7162
commit 9865543ae6
10 changed files with 2 additions and 47 deletions

View file

@ -120,13 +120,8 @@ typedef unsigned int uint;
#else /* !USE_HOSTCC */
#ifdef CONFIG_USE_STDINT
/* Provided by gcc. */
#include <stdint.h>
#else
/* Type for `void *' pointers. */
typedef unsigned long int uintptr_t;
#endif
#include <linux/string.h>
#include <linux/types.h>