diff mbox

[U-Boot] ARM: make memset and memcpy prompt message more clearly

Message ID 1498638457-32747-1-git-send-email-andy.yan@rock-chips.com
State Accepted
Delegated to: Tom Rini
Headers show

Commit Message

Andy Yan June 28, 2017, 8:27 a.m. UTC
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 | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Comments

Tom Rini June 29, 2017, 5:28 p.m. UTC | #1
On Wed, Jun 28, 2017 at 04:27:37PM +0800, Andy Yan wrote:

> 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>

Applied to u-boot/master, thanks!
diff mbox

Patch

diff --git a/arch/arm/Kconfig b/arch/arm/Kconfig
index 46183ae..59206b8 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