diff options
author | Philipp Tomsich <philipp.tomsich@theobroma-systems.com> | 2017-06-29 01:44:07 +0200 |
---|---|---|
committer | Philipp Tomsich <philipp.tomsich@theobroma-systems.com> | 2017-08-13 17:12:20 +0200 |
commit | f0776a551764bdb010a6fefd053c3aa88f1cf6bb (patch) | |
tree | 1d70e738066262d7dfee3cb3ab3f5465d68b1c5e | |
parent | c336c3c35f53d01fad0699237d5645440e454df6 (diff) |
spl: dm: Kconfig: SPL_CLK depends on SPL_DM
SPL_CLK should also depend on SPL_DM (and not just on CLK).
Add the additional dependency.
Signed-off-by: Philipp Tomsich <philipp.tomsich@theobroma-systems.com>
Reviewed-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Tom Rini <trini@konsulko.com>
-rw-r--r-- | drivers/clk/Kconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/clk/Kconfig b/drivers/clk/Kconfig index 60bd706fa2..b4a4877575 100644 --- a/drivers/clk/Kconfig +++ b/drivers/clk/Kconfig @@ -12,7 +12,7 @@ config CLK config SPL_CLK bool "Enable clock support in SPL" - depends on CLK + depends on CLK && SPL_DM help The clock subsystem adds a small amount of overhead to the image. If this is acceptable and you have a need to use clock drivers in |