diff options
| author | Linus Walleij <linus.walleij@linaro.org> | 2025-11-24 15:35:16 +0100 |
|---|---|---|
| committer | Linus Walleij <linus.walleij@linaro.org> | 2025-11-25 14:26:07 +0100 |
| commit | ebd61482ffab499208f06b8d3fa183cbe2dd5fa7 (patch) | |
| tree | 4dcb254bcd85b3cfd7d23227540f9f9f0d2d7407 | |
| parent | da53dcd54cc35efa7a8236846bb39d40deeee034 (diff) | |
pinctrl: cix: Fix obscure dependency
When compile-testing for UM-Linux the build fails because
we don't have IOMEM.
Add an explicit dependency.
Fixes: 920500c5fe66 ("pinctrl: cix: Add pin-controller support for sky1")
Reviewed-by: Peter Chen <peter.chen@cixtech.com>
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
| -rw-r--r-- | drivers/pinctrl/cix/Kconfig | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/pinctrl/cix/Kconfig b/drivers/pinctrl/cix/Kconfig index 455120dd7318..1529b1af6388 100644 --- a/drivers/pinctrl/cix/Kconfig +++ b/drivers/pinctrl/cix/Kconfig @@ -9,6 +9,7 @@ config PINCTRL_SKY1_BASE config PINCTRL_SKY1 tristate "Cix Sky1 pinctrl driver" depends on ARCH_CIX || COMPILE_TEST + depends on HAS_IOMEM select PINCTRL_SKY1_BASE help Say Y here to enable the sky1 pinctrl driver |
