diff options
author | Stephen Boyd <sboyd@kernel.org> | 2022-10-03 23:31:03 +0300 |
---|---|---|
committer | Stephen Boyd <sboyd@kernel.org> | 2022-10-18 01:30:00 +0300 |
commit | 2875a2f3f18359517e1720cf252ee5e7c2d6c29d (patch) | |
tree | 6c530b2f2fc1e31a734e23e1e018b85928832107 /drivers/clk/xilinx | |
parent | 9abf2313adc1ca1b6180c508c25f22f9395cc780 (diff) | |
download | linux-2875a2f3f18359517e1720cf252ee5e7c2d6c29d.tar.xz |
clk: xilinx: Drop duplicate depends on COMMON_CLK
This entire Kconfig file is only included within the if COMMON_CLK
section of the drivers/clk/Kconfig file. That makes the depends on
COMMON_CLK here redundant. Remove it.
Cc: Shubhrajyoti Datta <shubhrajyoti.datta@amd.com>
Signed-off-by: Stephen Boyd <sboyd@kernel.org>
Link: https://lore.kernel.org/r/20221003203103.2705007-1-sboyd@kernel.org
Diffstat (limited to 'drivers/clk/xilinx')
-rw-r--r-- | drivers/clk/xilinx/Kconfig | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/clk/xilinx/Kconfig b/drivers/clk/xilinx/Kconfig index f205522c40ff..051756953558 100644 --- a/drivers/clk/xilinx/Kconfig +++ b/drivers/clk/xilinx/Kconfig @@ -2,7 +2,7 @@ config XILINX_VCU tristate "Xilinx VCU logicoreIP Init" - depends on HAS_IOMEM && COMMON_CLK + depends on HAS_IOMEM select REGMAP_MMIO help Provides the driver to enable and disable the isolation between the @@ -19,7 +19,7 @@ config XILINX_VCU config COMMON_CLK_XLNX_CLKWZRD tristate "Xilinx Clocking Wizard" - depends on COMMON_CLK && OF + depends on OF depends on HAS_IOMEM help Support for the Xilinx Clocking Wizard IP core clock generator. |