diff options
author | Andy Shevchenko <andriy.shevchenko@linux.intel.com> | 2023-01-12 19:39:41 +0300 |
---|---|---|
committer | Bartosz Golaszewski <bartosz.golaszewski@linaro.org> | 2023-01-30 17:55:30 +0300 |
commit | 9c8224d04b2ee0c5b9cc6f536fdc23aefff63257 (patch) | |
tree | dc571743b7c52ce6ad7024aae69ccd36652b4023 /drivers/gpio/Kconfig | |
parent | a25d1dfdfcad505c49cc19e8ac64d0fcb8d12fa6 (diff) | |
download | linux-9c8224d04b2ee0c5b9cc6f536fdc23aefff63257.tar.xz |
gpio: zevio: Use proper headers and drop OF_GPIO dependency
The driver doesn't depend on the OF_GPIO to be compiled. Hence
the proper header to use is mod_devicetable.h. Replace of*.h with
the above mentioned and drop redundant dependency.
Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Signed-off-by: Bartosz Golaszewski <bartosz.golaszewski@linaro.org>
Diffstat (limited to 'drivers/gpio/Kconfig')
-rw-r--r-- | drivers/gpio/Kconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpio/Kconfig b/drivers/gpio/Kconfig index 525b911b4ac7..406e8bda487f 100644 --- a/drivers/gpio/Kconfig +++ b/drivers/gpio/Kconfig @@ -762,7 +762,7 @@ config GPIO_XTENSA config GPIO_ZEVIO bool "LSI ZEVIO SoC memory mapped GPIOs" - depends on ARM && OF_GPIO + depends on ARM help Say yes here to support the GPIO controller in LSI ZEVIO SoCs. |