diff mbox series

actions: Fix syntax for enabling SYS_RELOC_GD_ENV_ADDR

Message ID 20200501145329.11960-1-trini@konsulko.com
State Accepted
Commit 36c2f020f2b633bdc6c75f4f836bbef900b8b78c
Headers show
Series actions: Fix syntax for enabling SYS_RELOC_GD_ENV_ADDR | expand

Commit Message

Tom Rini May 1, 2020, 2:53 p.m. UTC
The correct syntax is 'select SYS_...' and not 'select CONFIG_SYS...'

Fixes: d5c819b885c2 ("actions: Move defconfig options to Kconfig")
Signed-off-by: Tom Rini <trini at konsulko.com>
---
 arch/arm/Kconfig | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

Tom Rini May 1, 2020, 9:57 p.m. UTC | #1
On Fri, May 01, 2020 at 10:53:29AM -0400, Tom Rini wrote:

> The correct syntax is 'select SYS_...' and not 'select CONFIG_SYS...'
> 
> Fixes: d5c819b885c2 ("actions: Move defconfig options to Kconfig")
> Signed-off-by: Tom Rini <trini at konsulko.com>

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

Patch

diff --git a/arch/arm/Kconfig b/arch/arm/Kconfig
index 8e67e1c58733..3383b05e480b 100644
--- a/arch/arm/Kconfig
+++ b/arch/arm/Kconfig
@@ -881,7 +881,7 @@  config ARCH_OWL
 	select CLK
 	select CLK_OWL
 	select OF_CONTROL
-	select CONFIG_SYS_RELOC_GD_ENV_ADDR
+	select SYS_RELOC_GD_ENV_ADDR
 	imply CMD_DM
 
 config ARCH_QEMU