From: Geert Uytterhoeven Date: Mon, 3 Aug 2020 08:48:35 +0000 (+0200) Subject: clk: hsdk: Fix bad dependency on IOMEM X-Git-Tag: v5.9-rc1~48^2~3^4 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=bd8548d0dcdab514e08e35a3451667486d879dae;p=thirdparty%2Flinux.git clk: hsdk: Fix bad dependency on IOMEM CONFIG_IOMEM does not exist. The correct symbol to depend on is CONFIG_HAS_IOMEM. Fixes: 1e7468bd9d30a21e ("clk: Specify IOMEM dependency for HSDK pll driver") Signed-off-by: Geert Uytterhoeven Link: https://lore.kernel.org/r/20200803084835.21838-1-geert+renesas@glider.be Signed-off-by: Stephen Boyd --- diff --git a/drivers/clk/Kconfig b/drivers/clk/Kconfig index 690a2587e0c5a..4026fac9fac33 100644 --- a/drivers/clk/Kconfig +++ b/drivers/clk/Kconfig @@ -50,7 +50,7 @@ source "drivers/clk/versatile/Kconfig" config CLK_HSDK bool "PLL Driver for HSDK platform" depends on OF || COMPILE_TEST - depends on IOMEM + depends on HAS_IOMEM help This driver supports the HSDK core, system, ddr, tunnel and hdmi PLLs control.