diff options
author | Michal Simek <michal.simek@xilinx.com> | 2018-07-23 15:55:14 +0200 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2018-07-30 07:18:48 -0400 |
commit | 08a00cba06a7e608ae65e3d7ea225cf8c639429d (patch) | |
tree | a5342e260c5db2fc4cba1d2bc147cefc552d7227 /arch/arm/mach-at91/Kconfig | |
parent | 5ed063d10f647b7cdbd048c8acdf7d030f1a94e6 (diff) | |
download | u-boot-08a00cba06a7e608ae65e3d7ea225cf8c639429d.tar.gz |
dm: Change CMD_DM enabling
CMD_DM is used for debug purpose and it shouldn't be enabled by default
via Kconfig. Unfortunately this is in the tree for quite a long time
that's why solution is to use imply DM for all targets which are
enabling DM.
Signed-off-by: Michal Simek <michal.simek@xilinx.com>
Reviewed-by: Tom Rini <trini@konsulko.com>
Reviewed-by: Joe Hershberger <joe.hershberger@ni.com>
Diffstat (limited to 'arch/arm/mach-at91/Kconfig')
-rw-r--r-- | arch/arm/mach-at91/Kconfig | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/arch/arm/mach-at91/Kconfig b/arch/arm/mach-at91/Kconfig index 1a56957cf9..69856c8942 100644 --- a/arch/arm/mach-at91/Kconfig +++ b/arch/arm/mach-at91/Kconfig @@ -78,6 +78,7 @@ config TARGET_SNAPPER9260 select DM select DM_GPIO select DM_SERIAL + imply CMD_DM config TARGET_GURNARD bool "Support gurnard" @@ -89,6 +90,7 @@ config TARGET_GURNARD select DM_SERIAL select DM_SPI select SPI + imply CMD_DM config TARGET_AT91SAM9261EK bool "Atmel at91sam9261 reference board" @@ -209,6 +211,7 @@ config TARGET_CORVUS select DM_GPIO select DM_SERIAL select SUPPORT_SPL + imply CMD_DM config TARGET_TAURUS bool "Support taurus" @@ -220,6 +223,7 @@ config TARGET_TAURUS select DM_SPI select SPI select SUPPORT_SPL + imply CMD_DM config TARGET_SMARTWEB bool "Support smartweb" @@ -229,6 +233,7 @@ config TARGET_SMARTWEB select DM_GPIO select DM_SERIAL select SUPPORT_SPL + imply CMD_DM config TARGET_VINCO bool "Support VINCO" @@ -237,6 +242,7 @@ config TARGET_VINCO select SAMA5D4 select SPI select SUPPORT_SPL + imply CMD_DM config TARGET_WB45N bool "Support Laird WB45N" |