aboutsummaryrefslogtreecommitdiff
path: root/arch
diff options
context:
space:
mode:
authorUlf Magnusson <ulfalizer@gmail.com>2018-01-30 14:02:01 +0100
committerMichal Simek <michal.simek@xilinx.com>2018-01-30 14:29:52 +0100
commite7563c204eb4f7a422121c342e4e9f34cd1986e9 (patch)
tree6e6960fdb675cbf21bfcb576eed18afbc0a7349b /arch
parentaae7422b45012da8f9594c72ab914b87d3a3708a (diff)
downloadu-boot-e7563c204eb4f7a422121c342e4e9f34cd1986e9.zip
u-boot-e7563c204eb4f7a422121c342e4e9f34cd1986e9.tar.gz
u-boot-e7563c204eb4f7a422121c342e4e9f34cd1986e9.tar.bz2
arm64: zynqmp: Fix misspelled choice default
There is no JTAG symbol in the "Boot mode" choice. JTAG_MODE was probably intended. No functional changes. Kconfig choices fall back on using the first (visible) symbol in the choice as the default if the default symbol is not visible. Discovered in Kconfiglib (https://github.com/ulfalizer/Kconfiglib), which prints the following warning: warning: the default selection JTAG (undefined) of <choice> (defined at arch/arm/cpu/armv8/zynqmp/Kconfig:107) is not contained in the choice I've added a corresponding warning to the C tools too, which is currently in linux-next: https://patchwork.kernel.org/patch/9983667/ Signed-off-by: Ulf Magnusson <ulfalizer@gmail.com> Signed-off-by: Michal Simek <michal.simek@xilinx.com>
Diffstat (limited to 'arch')
-rw-r--r--arch/arm/cpu/armv8/zynqmp/Kconfig2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/cpu/armv8/zynqmp/Kconfig b/arch/arm/cpu/armv8/zynqmp/Kconfig
index 46de130..9e521ed 100644
--- a/arch/arm/cpu/armv8/zynqmp/Kconfig
+++ b/arch/arm/cpu/armv8/zynqmp/Kconfig
@@ -113,7 +113,7 @@ config SPL_ZYNQMP_ALT_BOOTMODE
choice
prompt "Boot mode"
depends on SPL_ZYNQMP_ALT_BOOTMODE_ENABLED
- default JTAG
+ default JTAG_MODE
config JTAG_MODE
bool "JTAG_MODE"