[U-Boot] [PATCH 2/3] common/init: remove meaningless defined(CONFIG_USE_ARCH_MEMSET)
Masahiro Yamada
yamada.masahiro at socionext.com
Mon Dec 19 11:31:03 CET 2016
CONFIG_USE_ARCH_MEMSET controls nothing about SPL. (it is effective
only on U-Boot proper building of ARM).
Signed-off-by: Masahiro Yamada <yamada.masahiro at socionext.com>
---
common/init/board_init.c | 4 +---
1 file changed, 1 insertion(+), 3 deletions(-)
diff --git a/common/init/board_init.c b/common/init/board_init.c
index ef01a9a..a2edb4e 100644
--- a/common/init/board_init.c
+++ b/common/init/board_init.c
@@ -15,9 +15,7 @@ DECLARE_GLOBAL_DATA_PTR;
* It isn't trivial to figure out whether memcpy() exists. The arch-specific
* memcpy() is not normally available in SPL due to code size.
*/
-#if !defined(CONFIG_SPL_BUILD) || \
- (defined(CONFIG_SPL_LIBGENERIC_SUPPORT) && \
- !defined(CONFIG_USE_ARCH_MEMSET))
+#if !defined(CONFIG_SPL_BUILD) || defined(CONFIG_SPL_LIBGENERIC_SUPPORT)
#define _USE_MEMCPY
#endif
--
2.7.4
More information about the U-Boot
mailing list