diff options
author | Linus Walleij <linus.walleij@linaro.org> | 2018-03-12 12:16:34 +0100 |
---|---|---|
committer | Linus Walleij <linus.walleij@linaro.org> | 2018-03-19 01:50:31 +0100 |
commit | 430f64998789e80e5ed22de85c18b62d6a835dcd (patch) | |
tree | f44977d1270fea39fb25f00d8abc1350c2c71aaa /drivers/gpio | |
parent | 96d0d03dc447993d0eaca5c4294b7560860a378b (diff) | |
download | linux-430f64998789e80e5ed22de85c18b62d6a835dcd.tar.bz2 |
gpio: kempld: Include the right header
This driver is a pure GPIO driver and should only 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-kempld.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpio/gpio-kempld.c b/drivers/gpio/gpio-kempld.c index 701f1510328c..7bb96f48ef76 100644 --- a/drivers/gpio/gpio-kempld.c +++ b/drivers/gpio/gpio-kempld.c @@ -20,7 +20,7 @@ #include <linux/bitops.h> #include <linux/errno.h> #include <linux/platform_device.h> -#include <linux/gpio.h> +#include <linux/gpio/driver.h> #include <linux/mfd/kempld.h> #define KEMPLD_GPIO_MAX_NUM 16 |