diff options
author | Linus Walleij <linus.walleij@linaro.org> | 2020-04-15 17:08:37 +0200 |
---|---|---|
committer | Pavel Machek <pavel@ucw.cz> | 2020-04-17 14:49:22 +0200 |
commit | ca99522667ad239267e3c17773dbabb482c1ceac (patch) | |
tree | d8fce5dd9aa8bb199e640ca209e707b63352b8e9 /drivers/leds/leds-tca6507.c | |
parent | leds: lt3593: Drop surplus include (diff) | |
download | linux-ca99522667ad239267e3c17773dbabb482c1ceac.tar.xz linux-ca99522667ad239267e3c17773dbabb482c1ceac.zip |
leds: tca6507: Include the right header
The TCA6507 optionally presents a GPIO controller, so include
<linux/gpio/driver.h> instead of the legacy <linux/gpio.h>.
Cc: NeilBrown <neilb@suse.com>
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
Signed-off-by: Pavel Machek <pavel@ucw.cz>
Diffstat (limited to 'drivers/leds/leds-tca6507.c')
-rw-r--r-- | drivers/leds/leds-tca6507.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/leds/leds-tca6507.c b/drivers/leds/leds-tca6507.c index 58be20cae183..1128ac75443c 100644 --- a/drivers/leds/leds-tca6507.c +++ b/drivers/leds/leds-tca6507.c @@ -93,7 +93,7 @@ #include <linux/leds.h> #include <linux/err.h> #include <linux/i2c.h> -#include <linux/gpio.h> +#include <linux/gpio/driver.h> #include <linux/workqueue.h> #include <linux/leds-tca6507.h> #include <linux/of.h> |