diff options
author | Ezequiel Garcia <ezequiel@vanguardiasur.com.ar> | 2018-01-12 12:33:24 -0300 |
---|---|---|
committer | Michal Simek <michal.simek@xilinx.com> | 2018-01-24 11:45:06 +0100 |
commit | 578d95e99ff7c158be8f293e9a5fdca91dd3a9b6 (patch) | |
tree | a54483b004571ff3330be603f379cb7602c7861f /arch | |
parent | 3759df0c0810636b31fe64c56868aa831514e509 (diff) | |
download | u-boot-578d95e99ff7c158be8f293e9a5fdca91dd3a9b6.tar.gz |
arm: zynq: Enable SPL_CLK only if SPL is enabled
Setup proper dependency in Kconfig for SPL_CLK.
If SPL is not enabled, SPL_CLK shouldn't be selected.
Cc: Michal Simek <michal.simek@xilinx.com>
Signed-off-by: Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
Signed-off-by: Michal Simek <michal.simek@xilinx.com>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/arm/Kconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/Kconfig b/arch/arm/Kconfig index 001ece3cf1..875907c7e8 100644 --- a/arch/arm/Kconfig +++ b/arch/arm/Kconfig @@ -790,7 +790,7 @@ config ARCH_ZYNQ select DM_USB if USB select BLK select CLK - select SPL_CLK + select SPL_CLK if SPL select CLK_ZYNQ imply CMD_CLK imply FAT_WRITE |