diff options
author | Algapally Santosh Sagar <santoshsagar.algapally@amd.com> | 2023-02-01 02:55:53 -0700 |
---|---|---|
committer | Michal Simek <michal.simek@amd.com> | 2023-03-09 13:14:59 +0100 |
commit | 6d87b1572f854435a68f868624f91673c91985e1 (patch) | |
tree | ba31f0777394aaa8e8173c103110216a7e1a14de /board/xilinx | |
parent | 70ed05ce6c051e55e126e67e72ab20409134c953 (diff) | |
download | u-boot-6d87b1572f854435a68f868624f91673c91985e1.tar.gz |
arm64: zynqmp: Add missing ZYNQMP_FIRMWARE dependencies
There are missing Kconfig dependencies in the code which is using
firmware interface.
The commit 71efd45a5fc7 ("arm64: zynqmp: Change firmware dependency")
add option to also disable ZYNQMP_FIRMWARE. But not all Kconfig
dependencies were properly described and also sdhci and gem drivers
didn't protect the code properly.
So, add the missing ZYNQMP_FIRMWARE dependencies.
Signed-off-by: Algapally Santosh Sagar <santoshsagar.algapally@amd.com>
Signed-off-by: Ashok Reddy Soma <ashok.reddy.soma@amd.com>
Link: https://lore.kernel.org/r/20230201095553.11219-1-ashok.reddy.soma@amd.com
Signed-off-by: Michal Simek <michal.simek@amd.com>
Diffstat (limited to 'board/xilinx')
-rw-r--r-- | board/xilinx/zynqmp/Kconfig | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/board/xilinx/zynqmp/Kconfig b/board/xilinx/zynqmp/Kconfig index 7d1f7398c3..ffa2f0215d 100644 --- a/board/xilinx/zynqmp/Kconfig +++ b/board/xilinx/zynqmp/Kconfig @@ -6,6 +6,7 @@ if ARCH_ZYNQMP config CMD_ZYNQMP bool "Enable ZynqMP specific commands" + depends on ZYNQMP_FIRMWARE default y help Enable ZynqMP specific commands like "zynqmp secure" |