diff options
author | Neha Malcom Francis <n-francis@ti.com> | 2023-03-03 13:51:24 +0530 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2023-03-29 11:58:26 -0400 |
commit | 54ff4eeb59dd7f1b4141cdfdc1126d85fb03751f (patch) | |
tree | 9bbdc24bd9ba293768b4b700449829d4277454f5 /board/ti/am62x | |
parent | 352ed65df7be1c28a94d895f83429f16b858efe0 (diff) | |
download | u-boot-54ff4eeb59dd7f1b4141cdfdc1126d85fb03751f.tar.gz u-boot-54ff4eeb59dd7f1b4141cdfdc1126d85fb03751f.tar.bz2 u-boot-54ff4eeb59dd7f1b4141cdfdc1126d85fb03751f.zip |
board: ti: Kconfig: Correct invalid Kconfig syntax
Kconfig does not support using 'select' to select a 'choice'. A choice
can be configured by either setting the choice symbol to 'y' in a
configuration file or by setting a 'default' of the choice.
In board/ti/*/Kconfig the SOC_K3_* choice is already set to 'y' in their
corresponding configs/*_defconfig file. So remove selecting it.
Signed-off-by: Neha Malcom Francis <n-francis@ti.com>
Diffstat (limited to 'board/ti/am62x')
-rw-r--r-- | board/ti/am62x/Kconfig | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/board/ti/am62x/Kconfig b/board/ti/am62x/Kconfig index 87fed44df1..5e8dfa3cc4 100644 --- a/board/ti/am62x/Kconfig +++ b/board/ti/am62x/Kconfig @@ -10,14 +10,12 @@ choice config TARGET_AM625_A53_EVM bool "TI K3 based AM625 EVM running on A53" select ARM64 - select SOC_K3_AM625 config TARGET_AM625_R5_EVM bool "TI K3 based AM625 EVM running on R5" select CPU_V7R select SYS_THUMB_BUILD select K3_LOAD_SYSFW - select SOC_K3_AM625 select RAM select SPL_RAM select K3_DDRSS |