summaryrefslogtreecommitdiff
path: root/arch/arm
diff options
context:
space:
mode:
authorAndy Yan <andy.yan@rock-chips.com>2017-06-28 08:27:37 (GMT)
committerTom Rini <trini@konsulko.com>2017-06-29 13:51:06 (GMT)
commitf8136e68cc2bb31cdfdcd54329efa5637171f98f (patch)
tree2d5f644ed796d3dbb802930491df7e05aa0f5d28 /arch/arm
parent2a0583e3e886196338ef373c045d4a0e02ee8670 (diff)
downloadu-boot-f8136e68cc2bb31cdfdcd54329efa5637171f98f.tar.xz
ARM: make memset and memcpy prompt message more clearly
The origin SPL_USE_ARCH_MEMSET/MEMCPY use same prompt message as USE_ARCH_MEMSET/MEMCPY, which makes it's hard to distinguish them in menuconfig interface. This patch gives them different prompt messages for spl and none-spl config. Signed-off-by: Andy Yan <andy.yan@rock-chips.com>
Diffstat (limited to 'arch/arm')
-rw-r--r--arch/arm/Kconfig4
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/arm/Kconfig b/arch/arm/Kconfig
index 46183ae..3c3f5f7 100644
--- a/arch/arm/Kconfig
+++ b/arch/arm/Kconfig
@@ -253,7 +253,7 @@ config USE_ARCH_MEMCPY
but may increase the binary size.
config SPL_USE_ARCH_MEMCPY
- bool "Use an assembly optimized implementation of memcpy"
+ bool "Use an assembly optimized implementation of memcpy for SPL"
default y if USE_ARCH_MEMCPY
depends on !ARM64
help
@@ -271,7 +271,7 @@ config USE_ARCH_MEMSET
but may increase the binary size.
config SPL_USE_ARCH_MEMSET
- bool "Use an assembly optimized implementation of memset"
+ bool "Use an assembly optimized implementation of memset for SPL"
default y if USE_ARCH_MEMSET
depends on !ARM64
help