mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-12-27 11:06:41 -05:00
When compile-testing for UM-Linux the build fails because
we don't have IOMEM.
Add an explicit dependency.
Fixes: 920500c5fe ("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>
16 lines
374 B
Plaintext
16 lines
374 B
Plaintext
# SPDX-License-Identifier: GPL-2.0-only
|
|
config PINCTRL_SKY1_BASE
|
|
tristate
|
|
select GENERIC_PINCTRL_GROUPS
|
|
select GENERIC_PINMUX_FUNCTIONS
|
|
select GENERIC_PINCONF
|
|
select REGMAP
|
|
|
|
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
|