diff options
author | Punit Agrawal <[email protected]> | 2021-03-22 15:17:54 +0900 |
---|---|---|
committer | Stephen Boyd <[email protected]> | 2021-04-07 17:26:09 -0700 |
commit | 21f237534661a93cb6edc68d8cf9aacd025da9c2 (patch) | |
tree | c3fa23b29b6d08a3822678ea4176d78cb0205eb2 | |
parent | c3ce6a4a812b8426ee0c7877cbd0b413841e770f (diff) |
clk: zynqmp: Drop dependency on ARCH_ZYNQMP
The clock driver depends on ZYNQMP_FIRMWARE which in turn depends on
ARCH_ZYNQMP. Simplify the Kconfig by dropping the redundant dependency
on ARCH_ZYNQMP as it'll be applied transitively via ZYNQMP_FIRMWARE.
Signed-off-by: Punit Agrawal <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
Reviewed-by: Michal Simek <[email protected]>
Signed-off-by: Stephen Boyd <[email protected]>
-rw-r--r-- | drivers/clk/zynqmp/Kconfig | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/clk/zynqmp/Kconfig b/drivers/clk/zynqmp/Kconfig index 14e4f5c55525..00df6be25c5d 100644 --- a/drivers/clk/zynqmp/Kconfig +++ b/drivers/clk/zynqmp/Kconfig @@ -2,8 +2,7 @@ config COMMON_CLK_ZYNQMP bool "Support for Xilinx ZynqMP Ultrascale+ clock controllers" - depends on ARCH_ZYNQMP || COMPILE_TEST - depends on ZYNQMP_FIRMWARE + depends on ZYNQMP_FIRMWARE || COMPILE_TEST default ZYNQMP_FIRMWARE help Support for the Zynqmp Ultrascale clock controller. |