diff options
author | Tom Rini <trini@konsulko.com> | 2017-01-22 19:43:11 -0500 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2017-01-24 10:35:54 -0500 |
commit | e5ec48152ad13ada83c541cdf7f47d5867c506db (patch) | |
tree | d96917c40f3f9d69f301c28d1ee6278a7ac1bd54 /arch/arm/mach-omap2/am33xx | |
parent | 88077715d8d81825605028f2040b17137513f858 (diff) |
Kconfig: Migrate BOARD_LATE_INIT to a select
This option should not really be user selectable. Note that on PowerPC
we currently only need BOARD_LATE_INIT when CHAIN_OF_TRUST is enabled so be
conditional on that.
Signed-off-by: Tom Rini <trini@konsulko.com>
Acked-by: Masahiro Yamada <yamada.masahiro@socionext.com> (for UniPhier)
Diffstat (limited to 'arch/arm/mach-omap2/am33xx')
-rw-r--r-- | arch/arm/mach-omap2/am33xx/Kconfig | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/arch/arm/mach-omap2/am33xx/Kconfig b/arch/arm/mach-omap2/am33xx/Kconfig index 56c44062c4..ae1c3cf5ed 100644 --- a/arch/arm/mach-omap2/am33xx/Kconfig +++ b/arch/arm/mach-omap2/am33xx/Kconfig @@ -6,6 +6,7 @@ choice config TARGET_AM335X_EVM bool "Support am335x_evm" + select BOARD_LATE_INIT select DM select DM_SERIAL select DM_GPIO @@ -20,6 +21,7 @@ config TARGET_AM335X_EVM config TARGET_AM335X_BALTOS bool "Support am335x_baltos" + select BOARD_LATE_INIT select DM select DM_SERIAL select DM_GPIO @@ -32,18 +34,21 @@ config TARGET_AM335X_IGEP0033 config TARGET_AM335X_SHC bool "Support am335x based shc board from bosch" + select BOARD_LATE_INIT select DM select DM_SERIAL select DM_GPIO config TARGET_AM335X_SL50 bool "Support am335x_sl50" + select BOARD_LATE_INIT select DM select DM_SERIAL select DM_GPIO config TARGET_BAV335X bool "Support bav335x" + select BOARD_LATE_INIT select DM select DM_SERIAL help @@ -96,6 +101,7 @@ config SPL_I2C_SUPPORT config TARGET_AM43XX_EVM bool "Support am43xx_evm" + select BOARD_LATE_INIT select TI_I2C_BOARD_DETECT help This option specifies support for the AM43xx |