clk: hsdk: Fix bad dependency on IOMEM
CONFIG_IOMEM does not exist. The correct symbol to depend on is
CONFIG_HAS_IOMEM.
Fixes: 1e7468bd9d
("clk: Specify IOMEM dependency for HSDK pll driver")
Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
Link: https://lore.kernel.org/r/20200803084835.21838-1-geert+renesas@glider.be
Signed-off-by: Stephen Boyd <sboyd@kernel.org>
This commit is contained in:
parent
ba857b2122
commit
bd8548d0dc
|
@ -50,7 +50,7 @@ source "drivers/clk/versatile/Kconfig"
|
||||||
config CLK_HSDK
|
config CLK_HSDK
|
||||||
bool "PLL Driver for HSDK platform"
|
bool "PLL Driver for HSDK platform"
|
||||||
depends on OF || COMPILE_TEST
|
depends on OF || COMPILE_TEST
|
||||||
depends on IOMEM
|
depends on HAS_IOMEM
|
||||||
help
|
help
|
||||||
This driver supports the HSDK core, system, ddr, tunnel and hdmi PLLs
|
This driver supports the HSDK core, system, ddr, tunnel and hdmi PLLs
|
||||||
control.
|
control.
|
||||||
|
|
Loading…
Reference in New Issue