diff options
author | Linus Walleij <linus.walleij@linaro.org> | 2018-01-13 22:14:56 +0100 |
---|---|---|
committer | Linus Walleij <linus.walleij@linaro.org> | 2018-01-13 22:14:56 +0100 |
commit | d543668a6174ddc1f0460cce3737e27a39ccd9df (patch) | |
tree | 73a9ab5e553ff1deead3888497f926fa1cb682ce /drivers/gpio | |
parent | 8a3b4f20d9d9157690dae98a5982c3be20ed97d2 (diff) | |
download | linux-d543668a6174ddc1f0460cce3737e27a39ccd9df.tar.gz linux-d543668a6174ddc1f0460cce3737e27a39ccd9df.tar.bz2 linux-d543668a6174ddc1f0460cce3737e27a39ccd9df.zip |
gpio: adp5588: Include proper header
This driver has no business including <linux/gpio.h>, it is a
driver so include <linux/gpio/driver.h>.
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
Diffstat (limited to 'drivers/gpio')
-rw-r--r-- | drivers/gpio/gpio-adp5588.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpio/gpio-adp5588.c b/drivers/gpio/gpio-adp5588.c index e717f8dc3966..3530ccd17e04 100644 --- a/drivers/gpio/gpio-adp5588.c +++ b/drivers/gpio/gpio-adp5588.c @@ -12,7 +12,7 @@ #include <linux/slab.h> #include <linux/init.h> #include <linux/i2c.h> -#include <linux/gpio.h> +#include <linux/gpio/driver.h> #include <linux/interrupt.h> #include <linux/irq.h> |