diff options
author | Philipp Tomsich <philipp.tomsich@theobroma-systems.com> | 2017-06-29 01:41:52 +0200 |
---|---|---|
committer | Philipp Tomsich <philipp.tomsich@theobroma-systems.com> | 2017-08-13 17:12:20 +0200 |
commit | 45233301b69d10ae84aa7568672eb31769ba7b48 (patch) | |
tree | 09a1eb8f5f23a44746c5c11d7b78d3d0ff01b2a2 /drivers/ram/Kconfig | |
parent | c6ac6c1bd42b8948825697c88ba4ea00d61c5e2e (diff) | |
download | u-boot-45233301b69d10ae84aa7568672eb31769ba7b48.tar.gz u-boot-45233301b69d10ae84aa7568672eb31769ba7b48.tar.bz2 u-boot-45233301b69d10ae84aa7568672eb31769ba7b48.zip |
spl: dm: Kconfig: SPL_RAM depends on SPL_DM
This commit models the dependency from SPL_RAM to SPL_DM in Kconfig.
Signed-off-by: Philipp Tomsich <philipp.tomsich@theobroma-systems.com>
Reviewed-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Tom Rini <trini@konsulko.com>
Diffstat (limited to 'drivers/ram/Kconfig')
-rw-r--r-- | drivers/ram/Kconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/ram/Kconfig b/drivers/ram/Kconfig index 61afd7a92a..e75c23ff17 100644 --- a/drivers/ram/Kconfig +++ b/drivers/ram/Kconfig @@ -10,7 +10,7 @@ config RAM config SPL_RAM bool "Enable RAM support in SPL" - depends on RAM + depends on RAM && SPL_DM help The RAM subsystem adds a small amount of overhead to the image. If this is acceptable and you have a need to use RAM drivers in |