diff options
author | Fabien Parent <fparent@baylibre.com> | 2016-11-29 14:23:36 +0100 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2016-12-03 13:21:12 -0500 |
commit | f519b3649156ee6d7945f7003cf8934bd9b39f1e (patch) | |
tree | be3cd44a4461a310600d457cf50d1f8de6ce9097 /arch | |
parent | 3891a54f479838bce3f9b298572200c9508106fc (diff) | |
download | u-boot-f519b3649156ee6d7945f7003cf8934bd9b39f1e.tar.gz u-boot-f519b3649156ee6d7945f7003cf8934bd9b39f1e.tar.xz u-boot-f519b3649156ee6d7945f7003cf8934bd9b39f1e.zip |
ARM: davinci: Move CONFIG_SYS_DA850_PLL_INIT to Kconfig
Clean config headers by moving CONFIG_SYS_DA850_PLL_INIT away to a
Kconfig file.
Signed-off-by: Fabien Parent <fparent@baylibre.com>
Reviewed-by: Tom Rini <trini@konsulko.com>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/arm/mach-davinci/Kconfig | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/arch/arm/mach-davinci/Kconfig b/arch/arm/mach-davinci/Kconfig index 5d1c5c5ccb..ffb9a45475 100644 --- a/arch/arm/mach-davinci/Kconfig +++ b/arch/arm/mach-davinci/Kconfig @@ -7,10 +7,12 @@ choice config TARGET_IPAM390 bool "IPAM390 board" select SUPPORT_SPL + select SYS_DA850_PLL_INIT config TARGET_DA850EVM bool "DA850 EVM board" select SUPPORT_SPL + select SYS_DA850_PLL_INIT config TARGET_EA20 bool "EA20 board" @@ -21,15 +23,20 @@ config TARGET_OMAPL138_LCDK config TARGET_CALIMAIN bool "Calimain board" + select SYS_DA850_PLL_INIT config TARGET_LEGOEV3 bool "LEGO MINDSTORMS EV3" + select SYS_DA850_PLL_INIT endchoice config SYS_SOC default "davinci" +config SYS_DA850_PLL_INIT + bool + source "board/Barix/ipam390/Kconfig" source "board/davinci/da8xxevm/Kconfig" source "board/davinci/ea20/Kconfig" |