Skip to content
Snippets Groups Projects
Commit 9dacbb27 authored by Simon Glass's avatar Simon Glass
Browse files

dm: tegra: Avoid using arch-specific memcpy() in SPL


The faster functions are not actually available in SPL and the code size
likely isn't worth it. Use the normal memcpy() in SPL.

Signed-off-by: default avatarSimon Glass <sjg@chromium.org>
parent ad1b81c8
No related branches found
No related tags found
No related merge requests found
......@@ -118,7 +118,9 @@
#define CONFIG_SYS_MEMTEST_START (NV_PA_SDRC_CS0 + 0x600000)
#define CONFIG_SYS_MEMTEST_END (CONFIG_SYS_MEMTEST_START + 0x100000)
#ifndef CONFIG_SPL_BUILD
#define CONFIG_USE_ARCH_MEMCPY
#endif
/*-----------------------------------------------------------------------
* Physical Memory Map
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment