]> git.sur5r.net Git - u-boot/commitdiff
ARM: make memset and memcpy prompt message more clearly
authorAndy Yan <andy.yan@rock-chips.com>
Wed, 28 Jun 2017 08:27:37 +0000 (16:27 +0800)
committerTom Rini <trini@konsulko.com>
Thu, 29 Jun 2017 13:51:06 +0000 (09:51 -0400)
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>
arch/arm/Kconfig

index 46183ae90091ffa33fd2aa13e65d7979b23b6f85..3c3f5f7d05d53dbadaf3e02556744aeb3151c02c 100644 (file)
@@ -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