mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-12-16 16:23:14 +00:00
6782b81588
Commitfe7d654d04
("mpc83xx: Migrate CONFIG_SYS_{BR, OR}*_PRELIM to Kconfig") converted CONFIG_SYS_{BRx/ORx}_PRELIM to Kconfig by implementing a fine-grained selection of every bit in Kconfig. But commitc7fad78ec0
("Convert CONFIG_SYS_BR0_PRELIM et al to Kconfig") reworked it so that you now just have to provide the raw value of each register in Kconfig. However, all fine-grained Kconfig items remained allthough they are not used anymore. Remove them all. Fixes:c7fad78ec0
("Convert CONFIG_SYS_BR0_PRELIM et al to Kconfig") Signed-off-by: Christophe Leroy <christophe.leroy@csgroup.eu>
26 lines
348 B
Text
26 lines
348 B
Text
menu "ELBC register setup"
|
|
|
|
choice
|
|
prompt "OR/BR for NAND SPL"
|
|
|
|
config ELBC_BR_OR_NAND_PRELIM_NONE
|
|
bool "None"
|
|
|
|
config ELBC_BR_OR_NAND_PRELIM_0
|
|
bool "0"
|
|
|
|
config ELBC_BR_OR_NAND_PRELIM_1
|
|
bool "1"
|
|
|
|
config ELBC_BR_OR_NAND_PRELIM_2
|
|
bool "2"
|
|
|
|
config ELBC_BR_OR_NAND_PRELIM_3
|
|
bool "3"
|
|
|
|
config ELBC_BR_OR_NAND_PRELIM_4
|
|
bool "4"
|
|
|
|
endchoice
|
|
|
|
endmenu
|