diff options
author | Masahiro Yamada <yamada.masahiro@socionext.com> | 2018-08-06 14:47:38 +0300 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2018-09-11 03:48:16 +0300 |
commit | 9865543ae65d7c9a435eedfc6a0ba23efb291121 (patch) | |
tree | 30e56d39a99e2bd49237472f4545e249704764f2 /test/stdint | |
parent | de39dc71625d1a66cc611d1a85bf53545cba60a3 (diff) | |
download | u-boot-9865543ae65d7c9a435eedfc6a0ba23efb291121.tar.xz |
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>
Diffstat (limited to 'test/stdint')
-rwxr-xr-x | test/stdint/test-includes.sh | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/test/stdint/test-includes.sh b/test/stdint/test-includes.sh index 077bdc73a1..1db8515e82 100755 --- a/test/stdint/test-includes.sh +++ b/test/stdint/test-includes.sh @@ -46,10 +46,8 @@ try_test() { $cmd } -# Run a test with and without CONFIG_USE_STDINT try_both() { try_test $@ - try_test $@ -DCONFIG_USE_STDINT } # board arch soc path-to-gcc |