gpio: zevio: Use proper headers and drop OF_GPIO dependency
authorAndy Shevchenko <andriy.shevchenko@linux.intel.com>
Thu, 12 Jan 2023 16:39:41 +0000 (18:39 +0200)
committerBartosz Golaszewski <bartosz.golaszewski@linaro.org>
Mon, 30 Jan 2023 14:55:30 +0000 (15:55 +0100)
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>
drivers/gpio/Kconfig
drivers/gpio/gpio-zevio.c

index 525b911b4ac7cfa4c05eb76e0a4bda0da43781db..406e8bda487fe95eb2c566a253db22deb10cf42b 100644 (file)
@@ -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.
 
index c9f4c26cae3d2918bc76492b3485474d0dd1f2e1..61e47456c33aef2b16cc45ef8ac31d578a575d05 100644 (file)
@@ -5,13 +5,14 @@
  * Author: Fabian Vogt <fabian@ritter-vogt.de>
  */
 
-#include <linux/spinlock.h>
+#include <linux/bitops.h>
 #include <linux/errno.h>
 #include <linux/init.h>
-#include <linux/bitops.h>
 #include <linux/io.h>
-#include <linux/of_device.h>
+#include <linux/mod_devicetable.h>
 #include <linux/slab.h>
+#include <linux/spinlock.h>
+
 #include <linux/gpio/driver.h>
 
 /*