mirror of
https://github.com/u-boot/u-boot.git
synced 2025-05-08 19:11:53 +00:00
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:
parent
de39dc7162
commit
9865543ae6
10 changed files with 2 additions and 47 deletions
|
@ -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>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue