Skip to content

Commit f577e9f

Browse files
bulwahngregkh
authored andcommitted
clk: staging: correct reference to config IOMEM to config HAS_IOMEM
[ Upstream commit cbfa6f3 ] Commit 0a0a66c ("clk: staging: Specify IOMEM dependency for Xilinx Clocking Wizard driver") introduces a dependency on the non-existing config IOMEM, which basically makes it impossible to include this driver into any build. Fortunately, ./scripts/checkkconfigsymbols.py warns: IOMEM Referencing files: drivers/staging/clocking-wizard/Kconfig The config for IOMEM support is called HAS_IOMEM. Correct this reference to the intended config. Fixes: 0a0a66c ("clk: staging: Specify IOMEM dependency for Xilinx Clocking Wizard driver") Signed-off-by: Lukas Bulwahn <[email protected]> Link: https://lore.kernel.org/r/[email protected] Signed-off-by: Greg Kroah-Hartman <[email protected]> Signed-off-by: Sasha Levin <[email protected]>
1 parent 5ae5f08 commit f577e9f

File tree

1 file changed

+1
-1
lines changed
  • drivers/staging/clocking-wizard

1 file changed

+1
-1
lines changed

drivers/staging/clocking-wizard/Kconfig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,6 @@
55

66
config COMMON_CLK_XLNX_CLKWZRD
77
tristate "Xilinx Clocking Wizard"
8-
depends on COMMON_CLK && OF && IOMEM
8+
depends on COMMON_CLK && OF && HAS_IOMEM
99
help
1010
Support for the Xilinx Clocking Wizard IP core clock generator.

0 commit comments

Comments
 (0)