diff options
author | Linus Walleij <linus.walleij@linaro.org> | 2018-04-13 14:47:59 +0200 |
---|---|---|
committer | Linus Walleij <linus.walleij@linaro.org> | 2018-05-16 14:35:24 +0200 |
commit | 11975f9e08423343a0975c246ea3928162266066 (patch) | |
tree | ae7503e247853f8b1bbd45ab66d69a380f2117e7 | |
parent | 284ead59d3c3f5e22a957ddeb6dba21f606fc88d (diff) | |
download | linux-rt-11975f9e08423343a0975c246ea3928162266066.tar.gz |
gpio: lpc32xx: Include the right header
This is a driver so only include <linux/gpio/driver.h>.
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
-rw-r--r-- | drivers/gpio/gpio-lpc32xx.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/gpio/gpio-lpc32xx.c b/drivers/gpio/gpio-lpc32xx.c index 92b3ae2a6735..aa74cc4d8b14 100644 --- a/drivers/gpio/gpio-lpc32xx.c +++ b/drivers/gpio/gpio-lpc32xx.c @@ -20,9 +20,8 @@ #include <linux/init.h> #include <linux/io.h> #include <linux/errno.h> -#include <linux/gpio.h> +#include <linux/gpio/driver.h> #include <linux/of.h> -#include <linux/of_gpio.h> #include <linux/platform_device.h> #include <linux/module.h> |