mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-12-17 08:43:07 +00:00
65cc0e2a65
The rest of the unmigrated CONFIG symbols in the CONFIG_SYS namespace do not easily transition to Kconfig. In many cases they likely should come from the device tree instead. Move these out of CONFIG namespace and in to CFG namespace. Signed-off-by: Tom Rini <trini@konsulko.com> Reviewed-by: Simon Glass <sjg@chromium.org>
32 lines
603 B
C
32 lines
603 B
C
#ifdef CONFIG_ARCH_MPC8308
|
|
|
|
#ifndef CFG_SYS_SICRL
|
|
#define CFG_SYS_SICRL (\
|
|
CONFIG_SICRL_SPI |\
|
|
CONFIG_SICRL_UART |\
|
|
CONFIG_SICRL_IRQ |\
|
|
CONFIG_SICRL_I2C2 |\
|
|
CONFIG_SICRL_ETSEC1_A \
|
|
)
|
|
#endif
|
|
|
|
#ifndef CFG_SYS_SICRH
|
|
#define CFG_SYS_SICRH (\
|
|
CONFIG_SICRH_ESDHC_A |\
|
|
CONFIG_SICRH_ESDHC_B |\
|
|
CONFIG_SICRH_ESDHC_C |\
|
|
CONFIG_SICRH_GPIO_A |\
|
|
CONFIG_SICRH_GPIO_B |\
|
|
CONFIG_SICRH_IEEE1588_A |\
|
|
CONFIG_SICRH_USB |\
|
|
CONFIG_SICRH_GTM |\
|
|
CONFIG_SICRH_IEEE1588_B |\
|
|
CONFIG_SICRH_ETSEC2 |\
|
|
CONFIG_SICRH_GPIOSEL |\
|
|
CONFIG_SICRH_TMROBI |\
|
|
CONFIG_SICRH_TMSOBI1 |\
|
|
CONFIG_SICRH_TMSOBI2 \
|
|
)
|
|
#endif
|
|
|
|
#endif
|