diff options
author | Andy Shevchenko <andriy.shevchenko@linux.intel.com> | 2020-05-12 20:27:19 +0200 |
---|---|---|
committer | Linus Walleij <linus.walleij@linaro.org> | 2020-05-18 09:16:31 +0200 |
commit | 4d3a050039a98bf12a8b9aa106395ce0c2dd9219 (patch) | |
tree | 7eb2888a3d4856ff322407d3ae7441725b671429 /drivers/gpio/gpio-xgene-sb.c | |
parent | gpio: mb86s7x: Remove superfluous test for ACPI companion (diff) | |
download | linux-4d3a050039a98bf12a8b9aa106395ce0c2dd9219.tar.xz linux-4d3a050039a98bf12a8b9aa106395ce0c2dd9219.zip |
gpio: xgene-sb: Drop redundant OF_GPIO dependency
There is nothing in the driver requires OF_GPIO. Moreover, driver
supports ACPI and OF_GPIO may be a quite overhead on such configurations.
Drop dependency for good and replace of_gpio.h to of.h since we have
one function to be defined from there.
Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Link: https://lore.kernel.org/r/20200512182721.55127-1-andriy.shevchenko@linux.intel.com
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
Diffstat (limited to 'drivers/gpio/gpio-xgene-sb.c')
-rw-r--r-- | drivers/gpio/gpio-xgene-sb.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpio/gpio-xgene-sb.c b/drivers/gpio/gpio-xgene-sb.c index b45bfa9baa26..203a268dd09c 100644 --- a/drivers/gpio/gpio-xgene-sb.c +++ b/drivers/gpio/gpio-xgene-sb.c @@ -10,8 +10,8 @@ #include <linux/module.h> #include <linux/io.h> +#include <linux/of.h> #include <linux/platform_device.h> -#include <linux/of_gpio.h> #include <linux/gpio/driver.h> #include <linux/acpi.h> |