mirror of
https://github.com/smaeul/u-boot.git
synced 2025-09-15 14:36:03 +01:00
Now that block drivers are all selecting the BLK symbol, there's no need for other options to be select'ing BLK so that other required functionality can be enabled. Remove these places. Reviewed-by: Peter Robinson <pbrobinson@gmail.com> Reviewed-by: Quentin Schulz <quentin.schulz@cherry.de> Signed-off-by: Tom Rini <trini@konsulko.com>
26 lines
367 B
Plaintext
26 lines
367 B
Plaintext
if ARCH_S5PC1XX
|
|
|
|
choice
|
|
prompt "S5PC1XX board select"
|
|
optional
|
|
|
|
config TARGET_S5P_GONI
|
|
bool "S5P Goni board"
|
|
select OF_CONTROL
|
|
select MISC_COMMON
|
|
select MMC
|
|
|
|
config TARGET_SMDKC100
|
|
bool "Support smdkc100 board"
|
|
select OF_CONTROL
|
|
|
|
endchoice
|
|
|
|
config SYS_SOC
|
|
default "s5pc1xx"
|
|
|
|
source "board/samsung/goni/Kconfig"
|
|
source "board/samsung/smdkc100/Kconfig"
|
|
|
|
endif
|