diff options
author | Wenyou Yang | 2017-07-31 15:21:57 +0800 |
---|---|---|
committer | Tom Rini | 2017-09-14 13:58:22 -0400 |
commit | 0712b672d2a1f9a156c489b4dd7ce8354c2b3e1f (patch) | |
tree | 9e4091cb5398863e1e7a8b02245c6b5ea121867d /drivers | |
parent | b861c61698fecd199c621a20059dff07017f8e33 (diff) |
clk: Kconfig: Add dependences of SPL_CLK
The SPL_CLK config should depend on SPL && SPL_DM.
Signed-off-by: Wenyou Yang <wenyou.yang@microchip.com>
Reviewed-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'drivers')
-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 7765148876d..baa60a52e68 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 && SPL_DM + depends on CLK && SPL && 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 |