diff options
author | Linus Walleij <linus.walleij@linaro.org> | 2018-04-13 15:11:30 +0200 |
---|---|---|
committer | Linus Walleij <linus.walleij@linaro.org> | 2018-05-16 14:35:24 +0200 |
commit | 3dc1c92fb24408736a5689088e3711c814c3c5a9 (patch) | |
tree | f352839eb71974fc8caaa813e35a1e34422acd3a | |
parent | 03a3f19ce3361af9a1c6c1c925172780c2b2778e (diff) | |
download | linux-3dc1c92fb24408736a5689088e3711c814c3c5a9.tar.bz2 |
gpio: mc9s08dz60: 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-mc9s08dz60.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpio/gpio-mc9s08dz60.c b/drivers/gpio/gpio-mc9s08dz60.c index 2fcad5b9cca5..d8d846d2189a 100644 --- a/drivers/gpio/gpio-mc9s08dz60.c +++ b/drivers/gpio/gpio-mc9s08dz60.c @@ -18,7 +18,7 @@ #include <linux/init.h> #include <linux/slab.h> #include <linux/i2c.h> -#include <linux/gpio.h> +#include <linux/gpio/driver.h> #define GPIO_GROUP_NUM 2 #define GPIO_NUM_PER_GROUP 8 |