Re: [PATCH] clk: Specify IOMEM dependency for HSDK pll driver

2020-07-11 Thread Stephen Boyd
Quoting David Gow (2020-06-29 21:32:14) > The HSDK pll driver uses the devm_ioremap_resource function, but does > not specify a dependency on IOMEM in Kconfig. This causes a build > failure on architectures without IOMEM, for example, UML (notably with > make allyesconfig). > > Fix this by making

[PATCH] clk: Specify IOMEM dependency for HSDK pll driver

2020-06-29 Thread David Gow
The HSDK pll driver uses the devm_ioremap_resource function, but does not specify a dependency on IOMEM in Kconfig. This causes a build failure on architectures without IOMEM, for example, UML (notably with make allyesconfig). Fix this by making CONFIG_CLK_HSDK depend on CONFIG_IOMEM. Signed-off-