diff options
author | Stephen Boyd <sboyd@kernel.org> | 2021-06-04 22:20:22 +0300 |
---|---|---|
committer | Stephen Boyd <sboyd@kernel.org> | 2021-06-04 22:23:28 +0300 |
commit | 51c8b49762e497b6f72185af951b192e7678c61d (patch) | |
tree | 928ff3e042f908ae2150e150f1c019131c9bebd9 /drivers/clk/versatile | |
parent | 419b3ab6987f2a108cc4710030184365b17467ac (diff) | |
download | linux-51c8b49762e497b6f72185af951b192e7678c61d.tar.xz |
clk: versatile: Depend on HAS_IOMEM
kbuild robot reports that s390 fails to build this driver with
COMPILE_TEST. Let's depend on HAS_IOMEM so that s390 doesn't try to
build it.
Cc: Lee Jones <lee.jones@linaro.org>
Acked-by: Linus Walleij <linus.walleij@linaro.org>
Reported-by: kernel test robot <lkp@intel.com>
Fixes: 419b3ab6987f ("clk: versatile: remove dependency on ARCH_*")
Link: https://lore.kernel.org/r/20210604192321.2594519-1-sboyd@kernel.org
Signed-off-by: Stephen Boyd <sboyd@kernel.org>
Diffstat (limited to 'drivers/clk/versatile')
-rw-r--r-- | drivers/clk/versatile/Kconfig | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/clk/versatile/Kconfig b/drivers/clk/versatile/Kconfig index 792315d893db..481de5657d85 100644 --- a/drivers/clk/versatile/Kconfig +++ b/drivers/clk/versatile/Kconfig @@ -1,6 +1,7 @@ # SPDX-License-Identifier: GPL-2.0-only menu "Clock driver for ARM Reference designs" + depends on HAS_IOMEM config ICST bool "Clock driver for ARM Reference designs ICST" |