diff options
author | Linus Walleij <linus.walleij@linaro.org> | 2017-05-29 13:40:45 +0200 |
---|---|---|
committer | Linus Walleij <linus.walleij@linaro.org> | 2017-05-29 13:41:50 +0200 |
commit | c504985e3be8ab4d232d7ff63e773948e06f2da6 (patch) | |
tree | 12f6e3fce1ee709560ecc5e640c3254f31bd11c0 | |
parent | 82e1e5cd30f52df4f76882ff4c87a1906c8da7ce (diff) | |
download | op-kernel-dev-c504985e3be8ab4d232d7ff63e773948e06f2da6.zip op-kernel-dev-c504985e3be8ab4d232d7ff63e773948e06f2da6.tar.gz |
gpio/pinctrl: ingenic: depend on OF
Fix compile errors due to missing OF.
Cc: Paul Cercueil <paul@crapouillou.net>
Reported-by: Randy Dunlap <rdunlap@infradead.org>
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
-rw-r--r-- | drivers/gpio/Kconfig | 1 | ||||
-rw-r--r-- | drivers/pinctrl/Kconfig | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/drivers/gpio/Kconfig b/drivers/gpio/Kconfig index 64bc995..395c85d 100644 --- a/drivers/gpio/Kconfig +++ b/drivers/gpio/Kconfig @@ -244,6 +244,7 @@ config GPIO_ICH config GPIO_INGENIC tristate "Ingenic JZ47xx SoCs GPIO support" + depends on OF depends on MACH_INGENIC || COMPILE_TEST select GPIOLIB_IRQCHIP help diff --git a/drivers/pinctrl/Kconfig b/drivers/pinctrl/Kconfig index abc1cef..7ae04a9 100644 --- a/drivers/pinctrl/Kconfig +++ b/drivers/pinctrl/Kconfig @@ -312,6 +312,7 @@ config PINCTRL_ZYNQ config PINCTRL_INGENIC bool "Pinctrl driver for the Ingenic JZ47xx SoCs" default y + depends on OF depends on MACH_INGENIC || COMPILE_TEST select GENERIC_PINCONF select GENERIC_PINCTRL_GROUPS |