diff options
author | Geert Uytterhoeven <geert+renesas@glider.be> | 2020-05-07 13:36:25 +0200 |
---|---|---|
committer | Linus Walleij <linus.walleij@linaro.org> | 2020-05-16 11:21:25 +0200 |
commit | 80691a8ac7a43434ed2ecff15d560a9e5d90f613 (patch) | |
tree | 5784ced7b9f8dfd7d44178cb1f8d43d7191f8307 /drivers/pinctrl | |
parent | 98a09fb4cbb0b1a750259c285b3abe7e67717121 (diff) | |
download | linux-80691a8ac7a43434ed2ecff15d560a9e5d90f613.tar.gz linux-80691a8ac7a43434ed2ecff15d560a9e5d90f613.tar.bz2 linux-80691a8ac7a43434ed2ecff15d560a9e5d90f613.zip |
pinctrl: equilibrium: Add architecture dependency
The Equilibrium pin controller is only present on Intel Lightning
Mountain SoCs. Add an architecture dependency to the
PINCTRL_EQUILIBRIUM config symbol, to avoid asking the user about it
when configuring a kernel for a non-x86 architecture.
Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
Link: https://lore.kernel.org/r/20200507113626.24026-2-geert+renesas@glider.be
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
Diffstat (limited to 'drivers/pinctrl')
-rw-r--r-- | drivers/pinctrl/Kconfig | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/pinctrl/Kconfig b/drivers/pinctrl/Kconfig index f646f070d98f..85030123a17e 100644 --- a/drivers/pinctrl/Kconfig +++ b/drivers/pinctrl/Kconfig @@ -442,6 +442,7 @@ config PINCTRL_TB10X config PINCTRL_EQUILIBRIUM tristate "Generic pinctrl and GPIO driver for Intel Lightning Mountain SoC" depends on OF && HAS_IOMEM + depends on X86 || COMPILE_TEST select PINMUX select PINCONF select GPIOLIB |