diff options
author | Andy Shevchenko <andriy.shevchenko@linux.intel.com> | 2023-07-19 01:30:53 +0300 |
---|---|---|
committer | Bartosz Golaszewski <bartosz.golaszewski@linaro.org> | 2023-07-19 14:25:49 +0300 |
commit | c9ab610e5cd98f7fe0213b382870437368f11457 (patch) | |
tree | 5f4206821ec3038c0486ef4c4a00f502f7457ffa /drivers/gpio/Kconfig | |
parent | e91d0f05e66afba9a3804bccf3d0a4310bb30024 (diff) | |
download | linux-c9ab610e5cd98f7fe0213b382870437368f11457.tar.xz |
gpio: bcm-kona: Make driver OF-independent
There is nothing in the driver that requires OF APIs,
make the driver OF independent.
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 e382dfebad7c..1cf267a3ed8b 100644 --- a/drivers/gpio/Kconfig +++ b/drivers/gpio/Kconfig @@ -191,7 +191,7 @@ config GPIO_RASPBERRYPI_EXP config GPIO_BCM_KONA bool "Broadcom Kona GPIO" - depends on OF_GPIO && (ARCH_BCM_MOBILE || COMPILE_TEST) + depends on ARCH_BCM_MOBILE || COMPILE_TEST help Turn on GPIO support for Broadcom "Kona" chips. |